Hi,
I'm trying to use the TabSet with the useSimpleTabs property set to true. It works fine using Chrome and Firefox, but in IE, I have the following problem with the borders:
Let's suppose I've enabled the CSS style with this call:
Then, I've the following CSS style:
In IE, the border simply does not appear... actually, the generated HTML object has the correct class name, but there's also an inline style attributes that simply overwrites my style...
Anyway, then I add the !important to my CSS class... Then my tab has a border, but also the content (I've turned canClose ON), so it looks like a grid :(.
I'm using SmartGWT power 4, updated yesterday.
Best regards,
Thomas
I'm trying to use the TabSet with the useSimpleTabs property set to true. It works fine using Chrome and Firefox, but in IE, I have the following problem with the borders:
Let's suppose I've enabled the CSS style with this call:
Code:
tabset.setUseSimpleTabs(true); tabset.setSimpleTabBaseStyle("test");
Code:
.testTopSelected { border: solid 1px black; }
Anyway, then I add the !important to my CSS class... Then my tab has a border, but also the content (I've turned canClose ON), so it looks like a grid :(.
I'm using SmartGWT power 4, updated yesterday.
Best regards,
Thomas
Comment