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...

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...