Hi,
We are using smartgwt pro 3.0 version.
In our app, we have overridden getBaseStyle method to set style for the rows as :
@Override
protected String getBaseStyle(ListGridRecord record, int rowNum, int colNum)
{
return "pending_hilite";
}
But,
While a click is performed on the record or cell the style specified by the getBaseStyle is gone and vanished. Expectation is to keep the same style when a click is performed.
Thanks In Advance
We are using smartgwt pro 3.0 version.
In our app, we have overridden getBaseStyle method to set style for the rows as :
@Override
protected String getBaseStyle(ListGridRecord record, int rowNum, int colNum)
{
return "pending_hilite";
}
But,
While a click is performed on the record or cell the style specified by the getBaseStyle is gone and vanished. Expectation is to keep the same style when a click is performed.
Thanks In Advance
Comment