Load content
24 Oct 20182 minutes to read
By default, the content inside the content-template property element is considered as the content for the Dialog widget.
Also, we can render the Dialog widget content through the following ways.
-
Request through AJAX
-
Request iframe content
-
Request image content
This settings can be specified through content-type property.
NOTE
Create a view page (AjaxContent.cshtml) which contains the content of the dialog.
<div class="control">
<ej-dialog id="dialog" title="Dialog" content-type="ajax" content-url="@Url.Content("~/dialog/ajaxcontent").ToString()">
</ej-dialog>
</div>AjaxContent.cshtml
<div id="content"> This content is loaded via AJAX request. </div>
We can handle the AJAX request’s success and failures through the events “ajax-success” and “ajax-error” events respectively.
You can modify the previous example as below to handle the success and failure events.
<div class="control">
<ej-dialog id="dialog" title="Dialog" content-type="ajax" ajax-success="onSucess" ajax-error="onerror" content-url="@Url.Content("~/dialog/ajaxcontent").ToString()">
</ej-dialog>
</div>Add the below script to the view page
<script>
function onSuccess(args) {
//handle success event
}
function onError(args) {
//handle success event
}
</script>NOTE
The same way we can render the iframe and image content for the Dialog widget by specifying the
content-typeas “iframe” and “image” respectively and also by specifying the proper location in thecontent-urlproperty. If you wish to dynamically change the dialog content, you can set thecontent-urland thecontent-typeproperty through setModel on any action.