Behavior and Settings
5 Oct 20153 minutes to read
Automatic Initializing WaitingPopup widget
WaitingPopup widget contains ShowOnInit property that allows the popup to display over a target on page load automatically. By default, ShowOnInit property is set as false.
The following steps explains you on how to display the WaitingPopup on page load.
-
In an VIEW page, add a helper element to render WaitingPopup widget.
<div id="target"> @Html.EJ().WaitingPopup("target").ShowOnInit(true) </div>
-
Add the following styles to render WaitingPopup widget.
<style type="text/css" class="cssStyles"> #control { height: 320px; width: 600px; } </style>
The following screenshot illustrates the WaitingPopup when ShowOnInit is set to “true”.
WaitingPopup with enabled showOnInit property
Enable / Disable Popup Indicator
You can show or hide the popup indicator of WaitingPopup widget using ShowImage property. By default, ShowImage property is set as true.
The following steps explains you to enable / disable popup indicator in WaitingPopup widget.
-
In the VIEW page, add a helper element to render WaitingPopup widget.
Enable popup indicator: <div id="target"> @Html.EJ().WaitingPopup("target").ShowOnInit(true).ShowImage(true).Text("Loading... Please wait...") </div> Disable popup indicator: <div id="target"> @Html.EJ().WaitingPopup("target").ShowOnInit(true).ShowImage(false).Text("Loading... Please wait...") </div>
-
Add the following styles to render WaitingPopup widget.
<style type="text/css" class="cssStyles"> #control { height: 320px; width: 600px; } </style>
Execute the above code to render the following output.
Enabled popup indicator WaitingPopup widget
Disabled popup indicator WaitingPopup widget
Show / Hide WaitingPopup
Using Show() and Hide() methods, you can display or hide the WaitingPopup widget over the target area.
The following steps explains you to show / hide the WaitingPopup widget.
-
In the VIEW page, add a helper element to render WaitingPopup widget.
<div id="target"> @Html.EJ().WaitingPopup("target").ShowOnInit(true) </div> Show WaitingPopup: <script type="text/javascript"> var popUpObj; $(function () { $("#target").ejWaitingPopup(); popUpObj = $("#target").data("ejWaitingPopup"); popUpObj.show(); });</script>Hide WaitingPopup:<script type="text/javascript"> var popUpObj $(function () { $("#target").ejWaitingPopup(); popUpObj = $("#target").data("ejWaitingPopup"); popUpObj.hide(); }); </script>
-
Add the following styles to render WaitingPopup widget.
<style type="text/css" class="cssStyles"> #control { height: 320px; width: 600px; } </style>
The following screenshot illustrates a WaitingPopup when Show() method is invoked.
WaitingPopup with Show() method