modifies the default style of the grid and its elements
| ss_header | string | style def. expression for the header | 
| ss_grid | string | style def. expression for grid cells | 
| ss_selCell | string | style def. expression for the selected cell | 
| ss_selRow | string | style def. expression for the selected row | 
mygrid.setStyle(
    "background-color:navy;color:white;font-weight:bold;",
    "","color:red;",""
);
call the method before or after init()
Back to top