I am looking for help to get the values from the auto generated edit form client side. I am currently capturing the command event "PerformInsert" but I do not know how to get the value the user typed into the edit field.
//Insert command
else if (args.get_commandName() == "PerformInsert") {
var MasterTable = $find("<%=RadGrid1.ClientID %>").get_masterTableView();
itemID = -1
insertLineItem(itemID, MasterTable);
}
With a column defined as:
<telerik:GridNumericColumn DataField="Qty" HeaderText="Qty" EditFormColumnIndex="0" />
How would I get its NEW value so I can build my JSON obj to pass to my data service.
Looking for a snippet to do this:
var qty == (some code to get the value of the edit form for Qty);
Thanks in advance