Re: TabLayoutPanel vs. DecoratedTabPanel

2014-09-08 Thread Davide Micheletti
eight: bold; > } On Mon, Sep 8, 2014 at 9:14 PM, KGD wrote: > How can I make the TabLayouPanel have the same appearance as the > DecoratedTabPanel? Specifically, the DecoratedTabPanel has the rounded > edges, separated tabs and generally a cleaner appearance. > > Thanks, >

TabLayoutPanel vs. DecoratedTabPanel

2014-09-08 Thread KGD
How can I make the TabLayouPanel have the same appearance as the DecoratedTabPanel? Specifically, the DecoratedTabPanel has the rounded edges, separated tabs and generally a cleaner appearance. Thanks, Keith -- You received this message because you are subscribed to the Google Groups

Re: Problem with DecoratedTabPanel.

2013-04-10 Thread Jens
Store the HandlerRegistration instance you get from the event bus and call HandlerRegistration.removeHandler() when your widget is removed from the DOM. You can override Widget.onLoad() and Widget.onUnload() to add/remove your event handlers. -- J. -- You received this message because you are

Problem with DecoratedTabPanel.

2013-04-10 Thread skippy
I have a DecoratedTabPanel that I am adding and removing different objects based on the users navigation. The problem is that after the object is removed they are still around and catching event from the bus. Is there a way to distroy the objects after removing them from the DecoratedTabPanel

How to style DecoratedTabPanel vertical?

2013-02-12 Thread membersound
Hi, first of all: where can I find the DecoratedTabPanel.css? I want to apply custom styles to it, but I could not find the css styles to be overwritten anywhere. My goal ist to vertically show the tab headers on the left like a menu, and their content on the right side. Thanks -- You rece

setHeight of DecoratedTabPanel

2011-11-22 Thread Claudio Pomo
I want to set height of all my tab into my DecoratedTabPanel horizontalPanel.add(aziendaDetailsView); horizontalPanel.setCellWidth(aziendaDetailsView, "30%"); horizontalPanel.add(azienda

Try To Add CellBrowser To DecoratedTabPanel Or Panel

2011-05-04 Thread Qadez
Hi All I want to ask if I can append CellBrowser On DecoratedTabPanel ? if Yes How How I Can Add CellBrowser To Panel like VerticalPanel I try To put it And Resize it but i doesn't work here is the Example package com.se.client; import com.google.gwt.cell.client.AbstractCell; i

Re: DecoratedTabPanel setWidth and setHeight not working as expected

2011-02-03 Thread cvh
Using GWT2.1.1, I had some limited success setting the height of the DecoratedTabPanel by including this in my CSS file: .gwt-TabPanelBottom { height: 10%; } see the Javadoc for DecoratedTabPanel which indicates that two CSS style rules are used: .gwt-DecoratedTabPanel { the tab

how to set size of the DecoratedTabPanel constant?

2011-01-03 Thread Leung
Hi, I would like to make the width and height of the DecoratedTabPanel constant. I have tried setsize, but the DecoratedTabPanel seems ignoring it. It just wraps the widget as tight as possible. Is there any way to fix the height and width of the panel? Scrollbar is expected if the widget

DecoratedTabPanel setWidth and setHeight not working as expected

2011-01-02 Thread Leung
Hi, I am trying to put a VerticalPanel inside a DecoratedTabPanel. I would like the width and height of the DecoratedTabPanel fixed, no matter the length of the strings inside the VerticalPanel. Then, I use setWidth and setHeight for both DecoratedTabPanel and VerticalPanel. However, the

Re: how to enable scrolling for app using DecoratedTabPanel?

2010-07-05 Thread Stefan Bachert
Hi Ingo, First of all, CSS(3) is a failed descriptive language. Inspite of its complexity it does not support some basic requirements of layout management. So you have to choose a layout which is possible with CSS. You can't define a layout and find out how to do it with CSS. I watched your video

Remove DecoratedTabPanel Margin

2010-07-05 Thread AgitoM
For a large application I am developing I am using a DecoratedTabPanel in a DecoratedTabPanel, to create the illusion of sub Tabs. However, the content of a tab has a white margin around it, which makes the tabPanel inside the tabPanel look rather ugly. How can I remove the white margin? I&#x

Re: how to enable scrolling for app using DecoratedTabPanel?

2010-07-05 Thread ingo
hello stefan, i could not solve the issue yet. i made a screencast showing my problem: http://www.youtube.com/watch?v=k_eqtePmbZY could anyone please have a quick look through the sourcecode and give me a hint about what i am missing here.. this is the entry point. http://code.google.com/p/honeycr

Re: how to display a JSP page inside a DecoratedTabPanel

2010-07-01 Thread Denis
thanks On Jun 30, 6:01 pm, rakesh wagh wrote: > the answer is embedded in your question: "framed". > Use com.google.gwt.user.client.ui.Frame > > On Jun 30, 10:51 am, Denis wrote: > > > Hello, > > > I have existing JSP pages that should be framed inside

Re: how to display a JSP page inside a DecoratedTabPanel

2010-06-30 Thread rakesh wagh
the answer is embedded in your question: "framed". Use com.google.gwt.user.client.ui.Frame On Jun 30, 10:51 am, Denis wrote: > Hello, > > I have existing JSP pages that should be framed inside a GWT > DecoratedTabPanel. > Is this doable at all? > > Thanks for you

how to display a JSP page inside a DecoratedTabPanel

2010-06-30 Thread Denis
Hello, I have existing JSP pages that should be framed inside a GWT DecoratedTabPanel. Is this doable at all? Thanks for your reply. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to googl

a weird IndexOutOfBoundsException after removing a tab from the DecoratedTabPanel

2010-06-30 Thread Denis
avoid it. The following code is my extension to DecoratedTabPanel to make it dynamically closable. Any input will be appreciated. public class ClosableTabPanel extends DecoratedTabPanel { private boolean isReadyToRemove = false; public ClosableTab

Re: how to enable scrolling for app using DecoratedTabPanel?

2010-06-19 Thread Stefan Bachert
widget should scroll > > at all. > > > RootLayoutPanel > >  \_ DockLayoutPanel (TabLayout class) > >   \_ DecoratedTabPanel (TabCenterView class) > > >      \_ScrollPanel > >       \_Content A > >      \_ScrollPanel > >       \_Content B > >      \_ScrollP

Re: how to enable scrolling for app using DecoratedTabPanel?

2010-06-18 Thread ingo
? kind regards, ingo On 17 Jun., 19:52, Stefan Bachert wrote: > Hi Ingo, > > from user point of view neither of your mentiones widget should scroll > at all. > > RootLayoutPanel >  \_ DockLayoutPanel (TabLayout class) >   \_ DecoratedTabPanel (TabCenterView class

Re: how to enable scrolling for app using DecoratedTabPanel?

2010-06-17 Thread Stefan Bachert
Hi Ingo, from user point of view neither of your mentiones widget should scroll at all. RootLayoutPanel \_ DockLayoutPanel (TabLayout class) \_ DecoratedTabPanel (TabCenterView class) \_ScrollPanel \_Content A \_ScrollPanel \_Content B \_ScrollPanel \_Content

Re: how to enable scrolling for app using DecoratedTabPanel?

2010-06-17 Thread Olivier Monaco
t; Do you want: > > 1) scroll the whole page? Don't use layouts (*LayoutPanel), there are > > made to avoid scrolling. Did you > > readhttp://code.google.com/intl/fr/webtoolkit/doc/latest/DevGuideUiPanels... > > > Try: > > > RootPanel > >  \_ DockPanel &g

Re: how to enable scrolling for app using DecoratedTabPanel?

2010-06-16 Thread ingo
//code.google.com/intl/fr/webtoolkit/doc/latest/DevGuideUiPanels... > > Try: > > RootPanel >  \_ DockPanel >   \_ DecoratedTabPanel > > 2) scroll the content area of the tabs? Add a ScrollPanel in each tab > content. > > Olivier > > On 16 juin, 09:12, ing

Re: how to enable scrolling for app using DecoratedTabPanel?

2010-06-16 Thread Olivier Monaco
Do you want: 1) scroll the whole page? Don't use layouts (*LayoutPanel), there are made to avoid scrolling. Did you read http://code.google.com/intl/fr/webtoolkit/doc/latest/DevGuideUiPanels.html? Try: RootPanel \_ DockPanel \_ DecoratedTabPanel 2) scroll the content area of the tabs?

how to enable scrolling for app using DecoratedTabPanel?

2010-06-16 Thread ingo
hello everyone, i am using the DecoratedTabPanel to split my application into several modules (http://honeyyycrm.appspot.com). however, i have currently no scrolling at all (in no browser). i read about this in the mailing list and it seems like a lot of developers have issues with this

Re: UiBinder and DecoratedTabPanel...

2010-01-19 Thread Stine Søndergaard
long examples :/ Btw, I managed to define a DecoratedTabPanel (see Sebastian's first reply) in my template: Tab 1 Hello - welcom to tab 1 page :)

Re: UiBinder and DecoratedTabPanel...

2010-01-19 Thread Stine Søndergaard
Aha - found the help entry! Thanks! ;D Now I only have to locate the DTD!!! Any ideas?! :] Thanks and sorry for all the stupid questions, Stine -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to goog

Re: UiBinder and DecoratedTabPanel...

2010-01-19 Thread Sebastian
In IntelliJ press F1 to get help. Search for dtd and read the first entry. I defined my own styles, but I assume that the GWT people will have to do some rework in this area. In work case add TabLayout programmatically. On Jan 19, 2:11 pm, Stine Søndergaard wrote: > Thanks a lot for your input,

Re: UiBinder and DecoratedTabPanel...

2010-01-19 Thread Stine Søndergaard
Thanks a lot for your input, Sebastian!! :) I know it might be basics for you guys, but could you maybe please explain to me how I configure a DTD in IntelliJ? :} One of the reasons that I have decided to avoid TabLayoutPanel is that the panel does not come with a default styling... have you foun

Re: UiBinder and DecoratedTabPanel...

2010-01-19 Thread Sebastian
ou can use DecoratedTabPanel in a UI-file. It extends the TabPanel which canno't be included either. You can still add it programmatically but it could break layout. Use the TabLayoutPanel instead. You can find binding examples in the source code of every component. It is right at the top. Best Reg

Re: UiBinder and DecoratedTabPanel...

2010-01-19 Thread Stine Søndergaard
I can see that there is a section named... Use in UiBinder Templates ... for some classes (eg. TabLayoutPanel)... but what about the rest? :} Please heeelp! Thanks a lot, Stine -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post

Re: UiBinder and DecoratedTabPanel...

2010-01-19 Thread Stine Søndergaard
... ehm... is there no way I can make my Intellij IDEA help me filling in the allowed elements in my ui.xml file?! :} -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-tool...@googlegroups.com.

UiBinder and DecoratedTabPanel...

2010-01-19 Thread Stine
Hello :) I am trying to get familiar with this UI binding stuff introduced in GWT 2.0! I have a problem finding out which child elements are allowed for for instance DecoratedTabPanel... Any input will be greatly appreciated! :] Thanks, Stine -- You received this message because you are

DecoratedTabPanel corner color

2010-01-18 Thread skippy
What controls the changing of the colors of the rounded tags? I see the css for: .wmsLowerDecoratedTabBar .tabTopLeft { background: url(http://localhost:/images/corner.png) no-repeat 0px -55px; -background: url(http://localhost:/images/corner_ie6.png) no- repeat 0px -55px; } .wmsLowerD

Re: Overriding DecoratedTabPanel CSS does not seem to change the look of the Tabs

2010-01-08 Thread RPB
Thanks for the tip, but I'm not quite ready to switch to standards mode (required for TabLayoutPanel) as it will involve a rework of some of the other elements on my website. I found that I am able to apply custom stylings if I first specifically remove the defaults : tp.getDeckPan

Re: Making DecoratedTabPanel to display different HTMLs

2010-01-07 Thread Abhay Singh
Hi Yes that can be done, infect i have done that when it wasn't working, but wanted to wirte less code which getting repeated I have done similer in J2EE program(while doing some thing in Swing) but here its not working. must me doing some thing wrong since i am not good java guy... Thanks fo

Re: Making DecoratedTabPanel to display different HTMLs

2010-01-05 Thread Pote
2010 at 3:17 PM, Abhay Singh wrote: > > > Hi All, > > > > I am trying to build a DecoratedTabPanel where on click on each tab i > > > will show different html pages, but > > > these html pages are not related to each other and can be modified > >

Re: Making DecoratedTabPanel to display different HTMLs

2010-01-04 Thread Abhay Singh
Hi, Am sorry, but what is problem with arrays, I can't figure it out On Jan 4, 6:27 pm, mariyan nenchev wrote: > Could you check your arrays please. > > On Mon, Jan 4, 2010 at 3:17 PM, Abhay Singh wrote: > > Hi All, > > > I am trying to build a DecoratedTabPan

Re: Making DecoratedTabPanel to display different HTMLs

2010-01-04 Thread mariyan nenchev
Could you check your arrays please. On Mon, Jan 4, 2010 at 3:17 PM, Abhay Singh wrote: > Hi All, > > I am trying to build a DecoratedTabPanel where on click on each tab i > will show different html pages, but > these html pages are not related to each other and can be modified

Making DecoratedTabPanel to display different HTMLs

2010-01-04 Thread Abhay Singh
Hi All, I am trying to build a DecoratedTabPanel where on click on each tab i will show different html pages, but these html pages are not related to each other and can be modified through html editor... let me be more clear, here is sample project # Sample.java public

Re: Overriding DecoratedTabPanel CSS does not seem to change the look of the Tabs

2009-12-28 Thread mariyan nenchev
Use the new TablayoutPanel it is easer to customize it. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group, send email to google-web-too

Overriding DecoratedTabPanel CSS does not seem to change the look of the Tabs

2009-12-28 Thread RPB
Hi all, I am seeing a strange problem when trying to alter the CSS for a DecoratedTabPanel. I don't have the problem for any other widgets, which change as I would expect. Here is what I have tried so far: a) Copy all of the CSS from the GWT showcase tabPanel example (http:// gwt.googl

DecoratedTabPanel and mouse events

2009-09-10 Thread Ryan
Hi, When I move my mouse over a DecoratedTabPanel. Is it possible to find out which is the tab on which my mouse is currently hovering. Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web To

Style tabs in DecoratedTabPanel

2009-05-30 Thread Aim
Hi I am new to GWT. Its quite interesting lib and i was able to play with most of stuff except that i am having really hard time decorating DecoratedTabPanel 's tabs. What i want to do is - just change tab 's background color and fonts.. that's it. Kindly suggest. Thanks in ad

Re: Not able to apply style to DecoratedTabPanel

2009-05-30 Thread Yoshiki Shibata
Hi, Try the following: DecoratedTabPanel dtp = new DecoratedTabPanel(); dtp.getDeckPanel().removeStyleName("gwt-TabPanelBottom"); dtp.getDeckPanel().addStyleName("customstyle"); A DecoratedTabPanel is subclass of TabPanel which is a Composite widget consisting of

Not able to apply style to DecoratedTabPanel

2009-05-30 Thread ADA
Hi, I am trying to apply custom style (secondary style) to the DecoratedTabPanel control. Same approach mentioned in the Google StockWatcher app. I am trying to change the border color of the DecoratedTabPanel (by default it is blue color, the panel below the tabs) by setting addStyleName

Re: Change font size on a DecoratedTabPanel

2009-05-15 Thread Salvador Diaz
> Percent can sometimes be wonky if your DecoratedTabPanel is the child > of an object with font-size set in px or pt. > A quick google shows: > > http://www.thesug.org/Blogs/kyles/archive/2009/04/17/CSS_FontSize_em_... > > If this doesn't work, just inspect your table in

Re: Change font size on a DecoratedTabPanel

2009-05-14 Thread Alyxandor
Use em units {0.5 em}... Percent can sometimes be wonky if your DecoratedTabPanel is the child of an object with font-size set in px or pt. A quick google shows: http://www.thesug.org/Blogs/kyles/archive/2009/04/17/CSS_FontSize_em_vs_px_vs_pt_vs_percent.aspx.aspx If this doesn't work,

Change font size on a DecoratedTabPanel

2009-05-14 Thread Ganaga
Hello, I'm really not good at playing with CSS. I have a DecoratedTabPanel and I simply want to reduce the default font size of the tab bar. I inherits the default chrome style and I have a css linked in the html page. Well, I tried several things in the css with no result:

Re: DecoratedTabPanel spacing

2009-05-05 Thread Sumit Chandel
Hi L Frohman, Have you tried setting the DecoratedTabBar style used by the DecoratedTabPanel? You should be able to set the spacing on the .gwt-DecoratedTabBar style itself, or you can define your own style and mimic the CSS used in gwt-DecoratedTabBar. DecoratedTabBar class: http://google-web

DecoratedTabPanel - cant change tab

2009-05-04 Thread huy
I have a DecoratedTabPanel with 2 tabs. I get the Element of the panel and set it to the maxContent of an info window of a marker. The panel is display fine in the maximize info window but nothing happened when I clicked on the second tab. Any help is appreciated, thanks

DecoratedTabPanel spacing

2009-05-01 Thread L Frohman
What is the css style that sets the spacing between the tabs at the top of a DecoratedTabPanel? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, sen

.gwt-DecoratedTabPanel missing from standard CSS?

2009-03-17 Thread Wendy Busath
The Javadoc says .gwt-DecoratedTabPanel uses style ".gwt- DecoratedTabPanel" but I don't see that style in the standard CSS file anywhere. Does this contributed to the display problem on IE where the corners do not show up? Can someone explain to me how it works on any browser

Re: Rounded corners in DecoratedTabPanel fail to display in IE 6

2008-10-30 Thread grasshopper
This is not a bug. You need a special way to tell IE 6 where the corner images are for those two corner table cells. This is the css file I use for DecoratedTabBar to work in any IE browser. The css styles for DecoratedTabPanel should be similar. Look at DecoratedTabPanel api for css style names

Rounded corners in DecoratedTabPanel fail to display in IE 6

2008-10-30 Thread omsrobert
The upper left and upper right corners are missing under IE 6. Is this a bug? How can I work around it? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email

IE 7 Rendering DecoratedTabPanel with GWT 1.5.3

2008-10-22 Thread jwheat3300
I am having a serious problem figuring out why the DecoratedTabPanel as well as the Dialog boxes are not rendering properly with IE 7. My understanding is that GWT does have cross browser support, or is it that IE 7 is still not supported. Here is the test code I used: DecoratedTabPanel dtp

Re: Background color for DecoratedTabPanel

2008-09-30 Thread Ian Bambury
L PROTECTED]> > > > > > > > > > > > > > Hi, > > > I am not able to change the background color of DecoratedTabPanel tab > > > baritems. I tried to use background attribute in - .gwt- > > > Deco

Re: Background color for DecoratedTabPanel

2008-09-30 Thread Shri
<[EMAIL PROTECTED]> > > > > > > > Hi, > > I am not able to change the background color of DecoratedTabPanel tab > > baritems. I tried to use background attribute in - .gwt- > > DecoratedTabPanel .gwt-TabBarItem but it doesn't work. Please

Re: Background color for DecoratedTabPanel

2008-09-29 Thread Ian Bambury
.gwt-DecoratedTab*Bar* .gwt-TabBarItem { background:#FF0; } Ian http://examples.roughian.com 2008/9/29 Shri <[EMAIL PROTECTED]> > > Hi, > I am not able to change the background color of DecoratedTabPanel tab > baritems. I tried to use background attribute in - .gwt- &

Re: Background color for DecoratedTabPanel

2008-09-29 Thread walden
MAIL PROTECTED]> wrote: > Hi, > I am not able to change the background color of DecoratedTabPanel tab > baritems. I tried to use background attribute in - .gwt- > DecoratedTabPanel .gwt-TabBarItem but it doesn't work. Please

Background color for DecoratedTabPanel

2008-09-28 Thread Shri
Hi, I am not able to change the background color of DecoratedTabPanel tab baritems. I tried to use background attribute in - .gwt- DecoratedTabPanel .gwt-TabBarItem but it doesn't work. Please help me on this issue. Thanks, Shridhar --~--~-~--~~~---~--~

Re: DecoratedTabPanel

2008-09-12 Thread Ian Bambury
1) Get the VerticalPanel widget from the tabpanel with getWidget 2) Cast the widget to a VerticalPanel 3) Get the TextBox widget from the VerticalPanel with getWidget 4) Cast that widget to a TextBox 2008/9/12 jamer <[EMAIL PROTECTED]> > > Does Nobody can help me > > > > > -- Ian http://e

Re: DecoratedTabPanel

2008-09-12 Thread jamer
Does Nobody can help me --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to Google-Web-Toolkit@googlegroups.com To unsubscribe from this group, send e

DecoratedTabPanel

2008-09-12 Thread jamer
Hello I created a DecoratedTabPanel, within it have a VerticalPanel with several textbox. Knowing the index TabPanel in which I am, How can I access the textbox placed in him? Thank you --~--~-~--~~~---~--~~ You received this message because you are subscribed to

Re: DecoratedTabPanel alignment of tabs

2008-09-09 Thread Len
if the tabs are in a panel that spans the page then you can use the css to move them to the right. the default styles for the tab are in the javadoc CSS Style Rules * .gwt-DecoratedTabPanel { the tab panel itself } * .gwt-TabPanelBottom { the bottom section of the tab panel (the deck

DecoratedTabPanel alignment of tabs

2008-09-09 Thread sboulay
Is there any way to set the alignment of the tabs in a DecoratedTabPanel. All of my tabs are on the left side of the page, I would like them on the right side of the page.HorizontalPanel has something like setHorizontalAlignment ... how is this done when adding tabs to DecoratedTabPanel . Thanks