Howdy!
I have a scenario in which I need to run some code when the item selected in a foreign key column in my grid is changed when it is being edited.
I can access other columns' editors without issue, but for some reason, every time I attempt to grab the editor for the foreign key column, it comes up as null.
For instance, I can use the following to grab the numeric text box for the edited row (in the Grid's on-edit event) with no issues:
var mcEditor = e.container.find("input[name=MoistureContent]").data("kendoNumericTextBox");
But, the only thing I can get to return as an object in the same on-edit event of the grid is the following:
var proctorEditor = e.container.find("input[name=ProctorReportId]");
I've tried using the following with no luck:
var proctorEditor = e.container.find("input[name=ProctorReportId]").data("kendoDropDownList"); var proctorEditor = e.container.find("input[name=ProctorReportId]").data("kendoComboBox");