123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- using System.Web;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using FastReport.Dialog;
- using System.Windows.Forms;
- namespace FastReport.Web
- {
- public partial class WebReport : WebControl, INamingContainer
- {
- private void ButtonClick(ButtonControl button)
- {
- if (button.DialogResult == DialogResult.OK)
- {
- FormClose(button, CloseReason.None);
- Prop.CurrentForm++;
- }
- else if (button.DialogResult == DialogResult.Cancel)
- {
- FormClose(button, CloseReason.UserClosing);
- Prop.State = ReportState.Canceled;
- }
- button.OnClick(null);
- }
- private void FormClose(ButtonControl button, CloseReason reason)
- {
- DialogPage dialog = button.Report.Pages[Prop.CurrentForm] as DialogPage;
- dialog.Form.DialogResult = button.DialogResult;
- FormClosingEventArgs closingArgs = new FormClosingEventArgs(reason, false);
- dialog.OnFormClosing(closingArgs);
- FormClosedEventArgs closedArgs = new FormClosedEventArgs(reason);
- dialog.OnFormClosed(closedArgs);
- dialog.ActiveInWeb = false;
- }
- private string GetButtonHtml(ButtonControl control)
- {
- return string.Format("<input class=\"{0}\" style=\"{1}\" type=\"button\" name=\"{2}\" value=\"{3}\" onclick=\"{4}\" title=\"{5}\" {6}/>",
- // class
- "",
- // style
- GetButtonStyle(control),
- // name
- control.Name,
- // value
- control.Text,
- // onclick
- GetEvent("onclick", control, ""),
- // title
- control.Text,
- // disabled
- control.Enabled ? "": "disabled"
- );
- }
- private string GetButtonStyle(ButtonControl control)
- {
- return string.Format("{0}{1}padding:0;margin:0;", GetStandardStyle(control), GetControlAlign(control));
- }
- }
- }
|