Hello telerik team,
selecting a row by code (JavaScript or code behind) does not fire the event SelectedIndexChanged.
The event is fired by clicking the row with the mouse, but not by code.
Example:
The item is selected but the event isn't fired.
EnablePostBackOnRowClick is enabled.
Greetings
Hubert
selecting a row by code (JavaScript or code behind) does not fire the event SelectedIndexChanged.
The event is fired by clicking the row with the mouse, but not by code.
Example:
var mt = findGrid().get_masterTableView();
if(mt) {
mt.clearSelectedItems();
mt.selectItem(mt.get_dataItems()[1].get_element());
}
The item is selected but the event isn't fired.
EnablePostBackOnRowClick is enabled.
Greetings
Hubert