In my Kendo grid I want to find the row number where i am making selection in dropdown. So that I cauld change the datepicker editable and focused.
Attaching pic for reference.
This is the code for kendo field
{
field: "md_of_iss",
title: "Mode of issue",
template: "#= modeName(md_of_iss) #",
editor: function (container) {
var input = $('<input id="md_of_iss" name="md_of_iss">');
input.appendTo(container);
input.kendoDropDownList({
dataTextField: "rsrc_Description",
dataValueField: "md_of_iss",
dataSource: array,
change: function (e) {
}
}).appendTo(container);
},
},
categoryDropDownEditor
as you posted on the other question ? – DontVoteMeDown