I am using the Popup editing in the UI Grid. How can I select the data values for the Row that is currently being edited? I need to grab the country for the current row and send it as a parameter to a datasource to return the states for that country.
I am doing this to select the first row, is there a style applied to the row that is currently selected or edited?
var grid = $("#entityAddressGrid").data("kendoGrid");
console.log(grid);
var dataItem = grid.dataItem(grid.tbody.find(">tr:first"));
I am doing this to select the first row, is there a style applied to the row that is currently selected or edited?
var grid = $("#entityAddressGrid").data("kendoGrid");
console.log(grid);
var dataItem = grid.dataItem(grid.tbody.find(">tr:first"));