Announcement

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

    Over and selected change in list grid record while using recordCustomStyleProperty

    Hi Isomorphic,


    We are using recordCustomStyleProperty in listgrid to set different colors for rows based on certain conditions. As Follows :-

    Code:
     if(isLockedVal == "true"){
               			 isLockedRecord[this.nmtGrid.recordCustomStyleProperty] = "cellIsLocked" ;
               			}
               			else{
               			 isLockedRecord[this.nmtGrid.recordCustomStyleProperty] = "cellIsUnLocked" ;
               			}
    Where cellIsLocked and cellIsUnLocked is defined in CSS.

    I read in Docs, that recordCustomStyleProperty is static and because of it Over and Select Changes are not working.

    So, Please suggest what property should i use to change the color of row and also have Over and Select Changes.

    Thanks & Regards
    Saurabh Gandhi

    #2
    See recordBaseStyleProperty.

    Comment

    Working...
    X