SMART datagrid v.1 > Classes > GridBody

Back  Forward

DataLudi.GridBody.rowStyles  property

The default Style Set used when drawing data rows. 

Before drawing data cells included in data row, the data row is drawn by using background, borderBottom style values. And, you can specify different styles in each row or range in rowRangeStyles property. 

Since the background has already been drawn with base color before drawing data row, if not a special case, you do not need to specify the styles in this property. The default value of properties is all null

The data row included in fixed area uses the style values specified in fixedRowStyles rather than this property. 

Getter
function rowStyles(): GridStyles
Setter
function setRowStyles(value: Object|GridStyles)
Note
Code -1
    grid.body().setRowStyles({
        background: null,
        borderBottom: null
    });
See Also
rowRangeStyles
fixedRowStyles
GridStyles
Examples
Row Styles