Skip to content

Commit fb27e8a

Browse files
committed
Bugfix to Ext4 grid / cellediting
1 parent dc676cd commit fb27e8a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

LDK/resources/web/LDK/grid/Panel.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ Ext4.apply(LABKEY.ext4.GRIDBUTTONS, {
5858
var model = LDK.StoreUtils.createModelInstance(grid.store, null, true);
5959
grid.store.insert(0, [model]); //add a blank record in the first position
6060

61-
if(cellEditing)
62-
cellEditing.startEditByPosition({row: 0, column: this.firstEditableColumn || 0});
61+
if (cellEditing)
62+
cellEditing.startEditByPosition({row: 0, column: grid.firstEditableColumn || 0});
6363
}
6464
}, config);
6565
},

0 commit comments

Comments
 (0)