• If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Announcement

Collapse
No announcement yet.

Cell Editing Plug In ?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Cell Editing Plug In ?

    I have a editable grid and am trying to use the method startEditByPosition. It seems that this method should open the cell for editing but, Nay Nay....

    Here's the snippets

    the grid contains:

    selType: 'cellmodel',
    plugins: [Ext.create('Ext.grid.plugin.CellEditing', {clicksToEdit: 1 })]

    in the controller:
    var dtlGrid = this.getInvoiceDetails();
    dtlGrid.editingPlugin.startEditByPosition({row:0,c olumn:1});

    no errors occur. nothing happens..

  • #2
    nevermind... it helps when you give it the correct column index... i forgot i had a hidden column

    Comment

    Working...
    X