Hi
I'm using with RadGrid for editing by GridBoundColumn that connected to ColumnEditorID with type of GridTextBoxColumnEditor.
In "OnCommand" Client-Side event i am asking if the the CommandName is "Update" and then i'm checking validations on the editing data:
function OnCommand(sender, args) {
var commandName = args.get_commandName();
if (sender._editIndexes.length > 0 && commandName == "Update") {
var itemIndex = args.get_commandArgument();
var row = tableView.get_dataItems()[itemIndex];
var cell = row.get_cell("SomeColumn");
}
My question is, if is there any way to access to the editing values by the ColumnEditorID of the found cell.
(in cell.innerHTML i can see the new editing values but it exists in Input tag. i need a More beautiful solution.)
Thanks !