Just had something odd happen.
I have a fairly conventional RadGrid with a FormTemplate popup editor. This has been working normally.
On the FormTemplate is a RadComboBox and I've been trying to attach a function call to the OnClientLoad event with the eventual intent of doing some intialization to the popup.
This function is defined as follows:
It appears that the $find call is what's disabling the popup. If I comment that out, the popup displays normally.
I have a fairly conventional RadGrid with a FormTemplate popup editor. This has been working normally.
On the FormTemplate is a RadComboBox and I've been trying to attach a function call to the OnClientLoad event with the eventual intent of doing some intialization to the popup.
This function is defined as follows:
function cbLoad(sender) {
var curVal = sender.get_value();
if (curVal == 3) {
var editForm = $find("<%=RadGrid1.ClientID%>").get_masterTableView().get_editItems()[0].get_editFormItem();
}
}
It appears that the $find call is what's disabling the popup. If I comment that out, the popup displays normally.