您好我正在使用Telerik 2011.1.519.35版本
如何从客户端获取 radgrid 插入项目和编辑项目...我使用了以下方法...但这些方法在2011.1.519.35版本中不起作用
function getTableViewInsertItem() {
var masterTable = $find("<%= RadGrid1.ClientID %>").get_masterTableView();
//gets the HTML object of the insert item opened in the current GridTableView
var insertedItem = masterTable.get_insertItem();
var editedItemsArray = masterTable.get_editItems();
}