I have a kendo window that has a form inside it. The form has input elements with a record's data populated within it. The user may close the window and select a different record to view. When the user does this, I need to show the kendo window again with the same form but with different record data. Here's what I'm currently doing
if (!$("#winContainer").data("kendoWindow")) {
$("#winContainer").kendoWindow({
modal: true,
width: "969px",
height: "646px",
title: "View Record",
content: "record.jsp"
});
} else {
$("#winContainer").data("kendoWindow").refresh({url: 'record.jsp'});
}
$("#winContainer").data("kendoWindow").center().open();
The form is contained within record.jsp, and I populate it with JSON data that I previously received from server (via JavaScript referenced in record.jsp). I need to ensure that the window does not show until the new record data is populated in the form. Is this the correct way to do this or is there some better way?
Instead of creating a new window each time or refreshing its content, I do recommend:
This way you only need to load the page once.
You might also consider having the page
record.jsp
defined as a Kendo UI template in your original page.Example:
Given the following user selectable records:
And a form defined as a template with the following HTML:
Our JavaScript would be something like:
Bind data to the window and opening it:
And finally invoking the function with the data.
You can see it running on this JSFiddle
NOTE: If you still prefer using the external page, just need to change
template: $("#record-jsp").html()
by:url: "record.jsp"