如何在用户点击添加按钮时创建空的可编辑行。![在此处输入图像描述] [1]
我是ext js的新手,在这里我分享了我的要求。我试图在搜索引擎中相关退休。我没有得到任何代码。 下面我分享要求图片。 这里我的要求是当用户点击" addlayer"按钮可编辑的新行将被创建。用户输入layerid,polictnum,限制值后点击"计算损失"按钮计算partof,attachment,expectedlosses values.and如何实现编辑和删除按钮。 任何人请分享相关代码。 我在这里使用visual studio 2012
答案 0 :(得分:3)
以下是示例代码:
var grid = this.lookupReference('grid reference'), // you can even do it differently if grid component or it's view is passed to your handler function
store = grid.getStore(); // get the store
var rec = store.insert(0, {}); // insert an empty record to your store
grid.getPlugin('celleditor').startEdit(0, 0); // enable editing at the first column of the new record in your grid.