Jump to content

UniDBGrid Column Cursor Change? How to Multi Columns?


openpgc

Recommended Posts

this is one column > index 4 . 

unction store.load(sender, records, successful, operation, eOpts)
{
    me=this.grid;
    colIndx=4;
    Ext.defer(function() {
        Ext.select(me.columnManager.columns[colIndx].getCellSelector()).setStyle("cursor", "pointer")
    }, 500)
}

how to 1, 4  col  use?

unction store.load(sender, records, successful, operation, eOpts)
{
    me=this.grid;
    colIndx=1;

    colIndx4=4;
    Ext.defer(function() {
        Ext.select(me.columnManager.columns[colIndx].getCellSelector()).setStyle("cursor", "pointer")
    }, 500)

    Ext.defer(function() {
        Ext.select(me.columnManager.columns[colIndx4].getCellSelector()).setStyle("cursor", "pointer")
    }, 500)

}

 

 

Link to comment
Share on other sites

  • 3 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...