StatusLineEvent sender, CEWebFormRendererEventArgs

This event is raised whenever the CE Web Forms Renderer wants to show a status line message, or error messages. The hosting page should show any status line information in the browsers own status line. The hosting page can optionally show any errors itself.

To intercept this event, the hosting page must write an event handler that matches the event Delegate: StatusLine.

To stop the CE Web Form Renderer from showing error messages, set the BypassStatusHandling property of the CEWebFormRendererEventArgs to true.

Example hosting page StatusLine event handler. (C#)

private void OnStatusLine(object sender, CEWebForm.CEWebFormRendererEventArgs e)
{
      // Register script for setting the text on the Browser Status line.
      string script = "<script language=\"javascript\">" +
      "CEWFR_SelfStatus = \"" + e.WebSession.StatusLineText +"\";" +
      "</script>";
      Page.RegisterStartupScript("StatusLine", script);
}