I am facing issue with Kendo dropdownlist while reloading the partial view. I have a partial view which will get loaded based on grid row selection .
Code block which I used:
function Reload() {
var reloadURL = qfc.core.getActionUrl("GetGridMthod", "Controller");
reloadURL += "/" + method();
$("#partialview").load(reloadURL);
}
The error message:
Cannot call method 'value' of kendoDropDownList before it is initialized
There are some threads regarding the above mentioned error, but none of them has the proper solution .