Grid Panel Cell Editing focus in CheckColumn

  1. #1

    Grid Panel Cell Editing focus in CheckColumn

    I have used CheckColumn in GridPanle as following way

    <ext:CheckColumn ID="CheckColumn1"
    runat="server"
    Text="Active?"
    DataIndex="IsActive"
    Width="50"
    Editable="true">

    and used cell editing as a Cell editing plugin

    <Plugins>
    <ext:CellEditing ID="CellEditing1" runat="server">
    </ext:CellEditing>
    </Plugins>

    Now while navigation in GridPanel through tab key , I am not able to focus on that column, so to check this column I must have to use mouse. Through tab key it skips this Check column. So what I have to do to move focus on checkcolumn through tab key?

    Shailesh
  2. #2
    Anyone has the solution?
  3. #3
    Hi,

    Here is the code
    <ext:CheckColumn ID="CheckColumn1"
    runat="server"
    Text="Active?"
    DataIndex="IsActive"
    Width="50"
    Editable="true"
    StopSelection="false">
    </ext:CheckColumn>
     
    <ext:CellEditing ID="CellEditing1" runat="server">
    <Listeners>
    <BeforeEdit Fn="beforeditUserDet" />
    <Edit Fn="editUserDet" />
    <CancelEdit Fn="cancelEdit" />
    </Listeners>
    </ext:CellEditing>
    Thanks
    Shailesh
  4. #4
    Hi,

    Please provide me the solution for this.


    Thanks

Similar Threads

  1. Grid Panel Cell Editing focus
    By shaileshsakaria in forum 2.x Help
    Replies: 0
    Last Post: Jan 13, 2013, 9:14 AM
  2. [CLOSED] Grid Panel - Conditional Editing
    By adelaney in forum 2.x Legacy Premium Help
    Replies: 1
    Last Post: Sep 17, 2012, 6:03 AM
  3. Replies: 4
    Last Post: Jul 10, 2012, 5:35 PM
  4. [CLOSED] How get value of <ext:CheckColumn ..Col value of grid panel in code behind c#
    By Satyanarayana murthy in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Nov 17, 2009, 6:22 AM
  5. [CLOSED] Grid panel Editing?
    By Etisbew in forum 1.x Legacy Premium Help
    Replies: 5
    Last Post: Oct 01, 2009, 8:22 AM

Posting Permissions