Невозможно редактировать последнюю строку в ExtJS 3.4 Редактируемая сетка в браузере Chrome. И это прекрасно работает в IE и FireFox. Это создание сетки и заполнение данных динамически.
Ниже приведен код:
this.grid = new Ext.grid.EditorGridPanel({
store: this.data,
columns: [
{id:'engProgName',header: 'Eng Name', width: 326, sortable: true, renderer: this.renderTooltip, dataIndex: 'programNameEN',
editor: new Ext.form.TextField({
allowBlank: false, msgTarget: 'title'
})},
{header: 'German Name', width: 326, sortable: true, renderer: this.renderTooltip, dataIndex: 'programNameFR',
editor: new Ext.form.TextField({
allowBlank: false, msgTarget: 'title'
})},
],
height: 340,
//autoExpandColumn:'engProgName',
viewConfig: {
emptyText: "No Records Found", deferEmptyText: false
},
bbar: new ASC.AdminTool.PagingToolbar({
store: this.data
})
});
this.grid.getBottomToolbar().on("beforechange",this.onBeforePageChange,Page);
this.grid.on("sortchange",this.onSortChange,Page);
// render the grid to the specified div in the page
this.grid.render('srGrid');
this.setPageToolbarSpacer();