[CLOSED] get rowindex for grid

  1. #1

    [CLOSED] get rowindex for grid

    Hi

    using 0.8.2 I am building a grid in code behind. Say 3 columns and one CommandColumn. When i click on the commandcolumn, I would like to put column 3 in edit mode.

    
    // build Grid
    // Add my command Handler for the ColumnCommand
    
    
    
    grid.Listeners.Command.Handler = "commandHandler(command, record, grid2, e);";
    aspx page -
    
    // command contains the text of the command
    // record has the current record
    // grid is reference of grid
    // but e is null</p>
    
    
    var commandHandler = function(command, record, grid, e) {</p>
    
    
    if (record != null) {</p>
    
    
        grid2.getColumnModel().setEditor(2, new Ext.grid.GridEditor(new Ext.form.TextField({ id: ", field1" }) ) );</p>
    
    
        grid2.getColumnModel().setEditable(2, true);</p>
    
    
        grid2.startEditing(0, 2);</p>
    
    
    }</p>
    
    
    else {</p>
    
    
    //Ext.Msg.alert(command, "-1");</p>
    
    
    }</p>
    
    
    };
    How to get the current RowIndex so I can set grid2.startEditing(rowIndex, 2);

    thank you
    Idriss
    </p>
  2. #2

    RE: [CLOSED] get rowindex for grid

    Hi,

    grid.store.indexOf(record)
  3. #3

    RE: [CLOSED] get rowindex for grid

    Thank you. works very nice. thank you again.
    idriss

Similar Threads

  1. [CLOSED] [1.0] Access to record by rowIndex
    By edigital in forum 1.x Legacy Premium Help
    Replies: 10
    Last Post: Apr 11, 2011, 12:59 PM
  2. [CLOSED] How to get gridpanel's rowIndex in the example below?
    By deejayns in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Jan 25, 2011, 1:51 PM
  3. [CLOSED] Get the rowIndex of the selected row
    By 78fede78 in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Jan 21, 2011, 12:44 PM
  4. rowIndex in GetRowClass - possible?
    By Tbaseflug in forum 1.x Help
    Replies: 2
    Last Post: Sep 23, 2009, 10:25 PM
  5. Combo - Populate with rowindex values
    By Tbaseflug in forum 1.x Help
    Replies: 1
    Last Post: Sep 21, 2009, 11:25 AM

Posting Permissions