We have some areas where we take a staticTextItem and apply titleStyle: textCaption so that the title uses a custom CSS class we have created. Normally this works well, but if theres a spot where we need to also apply clipTitle: true, then an extra div is added to the HTML with the default class of formTitle which negates titleStyle: textCaption. It also seems to randomly apply the Disabled state to the extra div class even though it is not disabled.
Is there a way to remove this redundant CSS class on clipped titles? I don't see any properties like clipTitleStyle.
See the screenshot below, the pink boxes highlighting the two classes. When clipTitle: false is set, there is only the textCaption class once. When clipTitle: true then the extra div with the default formTitle class is added.
Is there a way to remove this redundant CSS class on clipped titles? I don't see any properties like clipTitleStyle.
See the screenshot below, the pink boxes highlighting the two classes. When clipTitle: false is set, there is only the textCaption class once. When clipTitle: true then the extra div with the default formTitle class is added.
Comment