Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Showing pointer cursor for listgridfield of icon type

    Hello,

    I'm still using version 7, so i am not sure if this was fixed in version 8.

    I need to show a pointer cursor for a listgridfield with type=icon. This fields also implements recordclick which explains the needs of showing a pointer.

    Any ideas of how to do it?

    Thanks!

    #2
    On your ListGrid:

    getCellStyle: function(record,rowNum,colNum) {
    return colNum == 123 /* enter column number here*/ ?"pointer":this.Super("getCellStyle",arguments);
    }

    In your CSS:

    .pointer { cursor: pointer; }

    Comment

    Working...
    X