I have a RadGrid having inplace NEW row at its footer. I need to get and set the controls inside this InsertTemplate using the Telerik client-side API. I am using the below code to get the InsertedItem using client-side API :-
But trying to get the RadNumericTextBoxBox control from this InsertedItem like below :-
(here rntbItem is a RadNumericTextbox control name used in the InsertTemplate of the grid.)
throws a javascript error like findControl() method is not supported with this insertedItem element.
Can anybody help me out in this regard.
Thanks in advance.
var masterTable = grid.get_masterTableView();
var insertedItem = masterTable.get_insertItem();
var txtUnits = insertedItem.findControl("rntbItem");
throws a javascript error like findControl() method is not supported with this insertedItem element.
Can anybody help me out in this regard.
Thanks in advance.