Hi,
If you want to just alter the value inside the data item you can do the following.
JavaScript:
Regards,
Angel Petrov
Telerik by Progress
If you want to just alter the value inside the data item you can do the following.
JavaScript:
function
onSetActive(e)
{
e.preventDefault();
var
dataItem = $(
"#Grid"
).data(
"kendoGrid"
).dataItem($(e.currentTarget).closest(
"tr"
));
dataItem.set(
'Selected'
, 1);
}
Regards,
Angel Petrov
Telerik by Progress
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Feedback Portal
and vote to affect the priority of the items