I see. Well, i don't have a complete solution for your, but: what you have to do is to find the TabPanel-Element(the one with borders) and set it's style. To find the right element - check TabPanel structure in FireBug(or similar) - you'll probably find some tables in tables... Then use function like: DOM.getFirstChild or DOM.getChild on tabPanel.getElement() to get the Element and set it's style. Good luck ;-)
On 20 Feb., 15:46, ProtoLD <[email protected]> wrote: > The problem is, I will have tabpanels within tabpanels I need to set > individual styles on each of them. Some of them I need the padding > removed, others I need it. Hence I need to find out how to add a > style to the tabPanelBottom so I can manipulate each one > individually. I've even extended the tabPanel for each particular one > but adding styles to them does not appear to do anything. > > On Feb 20, 2:58 am, "alex.d" <[email protected]> wrote: > > > ... and going back to your question: just put > > > .gwt-TabPanelBottom { > > border: 0px; > > > } > > > in your own css file - you'll overwrite qwt style and that should do > > the trick ;-) > > > On 20 Feb., 09:31, "alex.d" <[email protected]> wrote: > > > > ...but this was probably just a cache issue. > > > > On 20 Feb., 09:22, "alex.d" <[email protected]> wrote: > > > > > Well, i had the same problem and i edited the .gwt-TabPanelBottom > > > > itself just to test, but nothing really happened. Any ideas on how to > > > > erase the border of the TabPanel? > > > > > On 19 Feb., 22:13, ProtoLD <[email protected]> wrote: > > > > > > Forgot to mention, I'd' like to do something like this: > > > > > > .mainTabPanels .gwt-TabPanelBottom { > > > > > border: 0; > > > > > > } > > > > > > On Feb 19, 3:12 pm, ProtoLD <[email protected]> wrote: > > > > > > > I can't figure out for the life of me which piece I need to add my > > > > > > style class to so that I can separate it from other tab panels > > > > > > (otherwise I'd just alter .gwt-TabPanelBottom itself). > > > > > > > I want to remove the border just around this one specific tabPanel. > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/Google-Web-Toolkit?hl=en -~----------~----~----~----~------~----~------~--~---
