Greetings,
I'm trying to change the style of the group on DynamicForm. In load_skin.js I've got:
Then in a custom css file I've got:
But the style is overridden by SmartClient, and doesn't reflect my changes. In fact, it looks like there's not style applied to it now (when it is rendered).
I'm unable to find any detailed documentation on this. I've looked over the forums, which got me this far, but I'm stuck now. Can somone provide a hint?
Thanks!
Stan
I'm trying to change the style of the group on DynamicForm. In load_skin.js I've got:
Code:
isc.Canvas.changeDefaults("groupLabelDefaults", { styleName:"filterGroupLabel" })
Code:
.filterGroupLabel { font-family:Verdana,sans-serif; font-size:9px; font-weight:normal; color:#061727; background:transparent; }
Code:
<td nowrap="true" valign="center" align="center" style="padding: 5px; background-color: white;" class="filterGroupLabel">Filters</td>
Thanks!
Stan
Comment