Is it possible to set the value of a cell client-side doing something like this? (Obviously this does not work)
function Test2() {
var MasterTable = $find('RadGrid1').get_masterTableView();
var items = MasterTable.get_dataItems();
var i = 0;
for (i = 0; i < 5; i++) {
var row = MasterTable.get_dataItems()[i];
var cell = MasterTable.getCellByColumnUniqueName(row, "StopNumber");
if (cell.innerHTML == 2) {
MasterTable.selectItem(MasterTable.get_dataItems()[i].get_element());
MasterTable.editSelectedItems();
var cell2 = MasterTable.getCellByColumnUniqueName(row, "PickUpOrDelPIN_NUM");
cell2.set_value =
"711143"
MasterTable.updateEditedItems();
return false;
}
}
}