Welcome, Guest
  • Author Topic: Can I colour a specific Datagrid row?  (Read 4302 times)

    samson1

    • Server what's that
    • *
    • Posts: 44
      • View Profile
    Can I colour a specific Datagrid row?
    « on: 07/19/07, 03:13 »
    Is it possible to dynamiclaly set a colour of a specific datagrid row?

    If so -- how ;-) ?

    Thanks
    Geoff

    Jorge Solis

    • Global Moderator
    • Systems Administrator
    • *****
    • Posts: 14616
      • View Profile
    Re: Can I colour a specific Datagrid row?
    « Reply #1 on: 07/19/07, 10:25 »
    Try

    myDataGrid_dg.setPropertiesAt(i, {backgroundColor:0xFF0000});      

    Where i is the row index

    Jorge