Re: SplitLayoutPanel

2010-01-21 Thread julien.dram...@gmail.com
They create their own style :)
But panel is usefull to layout your application (i.e. positionning
your widget like you want) No css is really needed for panel and it's
why they're not css defined in gwt themes. Now, if you want specific
behaviour, do it yourself :)

On Jan 12, 7:15 pm, Stine Søndergaard  wrote:
> Hmm... wonder what other developers do they just avoid using the new
> panels from GWT 2.0 maybe? :) Or is there a secret place where some default
> styles can be fetched? ;D
>
> Know that this post is not really asking anything new... hmm ;)
-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: SplitLayoutPanel

2010-01-12 Thread julien.dram...@gmail.com
no they are no style defined in themes.

If you want to know the different style classes for a Widget, look at
the javadoc of the associated class.

for SplitLayoutPanel :
http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/user/client/ui/SplitLayoutPanel.html


On Jan 12, 3:00 pm, Stine  wrote:
> (Btw - the inclusion of a theme in the project XML did not seem to
> make a difference anyway ;))
>
> On 12 Jan., 14:39, Stine  wrote:
>
>
>
> > Gosh - now I know!! ;D I just need to include one of these lines in
> > the project XML file...
>
> > 
> > 
> > 
>
> > Well, so far so good ;)
>
> > Cheers,
> > Stine- Hide quoted text -
>
> - Show quoted text -
-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: SplitLayoutPanel

2010-01-12 Thread julien.dram...@gmail.com
and what's the problem ?
no css is filled with theSpliLayoutPanel... You have to create it.

ex : if you want that a hand appears in the horizontal dragger, use
this css :
.gwt-SplitLayoutPanel-HDragger {
cursor:col-resize;
}


Julien



On Jan 12, 2:28 pm, Stine  wrote:
> I have the feeling that it is because I have to include the CSS needed
> directly in my host page... but where do I find the relevant CSS?! :}
-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: DockLayoutPanel inside a FormPanel

2010-01-12 Thread julien.dram...@gmail.com
thanks! I specified a height To my dock layout panel and it's working
fine.

On 12 jan, 11:21, Thomas Broyer  wrote:
> On Jan 11, 6:56 pm, "julien.dram...@gmail.com"
>
>
>
>
>
>  wrote:
> > Hello all,
>
> > I try to do something like that in a ui.ml file :
>
> > http://dl.google.com/gwt/DTD/xhtml.ent";>
> >  >         xmlns:g="urn:import:com.google.gwt.user.client.ui"
>
> >         
> >                 
> >                         
> >                              ..widget
> >                         
> >                         
> >                             ..widget
> >                         
> >                         
> >                         ..widget
> >                         
> >                 
> >         
> > 
>
> > I try to encapsulate a dockLayoutPanel inside a form panel. Indeed, I
> > have a complicated form to submit and I want to use a DockLayoutPanel
> > to layout it.
>
> > But the center and south part of the docklayoutpanel will become
> > invisible.
>
> > Indeed, the DockLayoutPanel create an html like this one :
>
> > 
> >          
> >         
> >                 
> >                          
> >                         
> >                                 
> >                                         .. north widgets
> >                                 
> >                         
> >                         
> >                                 
> >                                         ..south widgets
> >                                 
> >                         
> >                         
> >                                 
> >                                 .. center widget
> >                                 
> >                         
> >                 
> >         
> > 
>
> > The first  breaks the layout... If I
> > specify a height to this div, or if I remove "position: relativ" or if
> > I remove the "overflow:hidden" of the north and south main div, that's
> > works fine.
>
> > If the dockLayoutpanel is not encapsulated by the form panel the first
> >  is not present and the
> > docklayoutpanel is right displayed.
>
> > Suggestions ? Problem on my side or on GWT side ?
>
> I'd say on your side. By that I mean that this behavior is documented:
> see the "Using a LayoutPanel without RootLayoutPanel" section 
> onhttp://code.google.com/webtoolkit/doc/latest/DevGuideUiPanels.html#De...
-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: DockLayoutPanel inside a FormPanel

2010-01-12 Thread julien.dram...@gmail.com
the divs are created by GWT... It's the html code corresponding to a
docklayoutpanel.

On Jan 12, 1:52 am, UJ  wrote:
> Hi,
>
> Can you try using td/tr (table) as we do in the hello world example
> instead of using DIV?
> I am not sure but there might be integration issues in integration of
> DIV and GWT content.
>
> Regards,
> Upendra Jariya
-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




DockLayoutPanel inside a FormPanel

2010-01-11 Thread julien.dram...@gmail.com
Hello all,

I try to do something like that in a ui.ml file :

http://dl.google.com/gwt/DTD/xhtml.ent";>



 ..widget


..widget


..widget





I try to encapsulate a dockLayoutPanel inside a form panel. Indeed, I
have a complicated form to submit and I want to use a DockLayoutPanel
to layout it.

But the center and south part of the docklayoutpanel will become
invisible.

Indeed, the DockLayoutPanel create an html like this one :


 


 


.. north widgets




..south widgets




.. center widget






The first  breaks the layout... If I
specify a height to this div, or if I remove "position: relativ" or if
I remove the "overflow:hidden" of the north and south main div, that's
works fine.

If the dockLayoutpanel is not encapsulated by the form panel the first
 is not present and the
docklayoutpanel is right displayed.

Suggestions ? Problem on my side or on GWT side ?

Thanks,

Julien
-- 
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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: Full GWT Website with MS SQL Server 2008

2009-12-05 Thread julien.dram...@gmail.com
Nice web site but do you think about the search engines ??
I'm not sure that the site is optimized for google search...

On 5 déc, 11:13, Joe  wrote:
> Well, You're right Sathya,
>
> it is taking time, this is because the website contains lots of
> tables,
> horizontalpanel, htmlpanel, verticalpanel, etc ...
>
> TextBoxes on the other hand do not take long, what takes long is
> every dropdown, this is a customized widget built from scratch,
> this too needs to be optimized.
>
> The website has lot of images that load at startup, the website
> doesn't take benefit yet of the powerful GWT technique, ImageBundle.
>
> So you have lot of HTTP round trips. The listboxes, dropdowns,
> are loading their data on startup upon creation, this too, can be
> optimized
> by loading data on demand, which means on click on the drop down
> arrow.
>
> as for the structure, I am working on a new layout which is div + css,
> no tables.
>
> As soon as things get finished, i'll be posting them!
>
> Regards,
>
> Joe
> On Dec 4, 5:28 am, sathya  wrote:
>
> > Good one.But it is taking time to loak all images and text boxes.I
> > feel you can make it still fast as user doesnt feel to wait to load
> > everything
>
> > On Dec 3, 3:55 pm, Joe  wrote:
>
> > > Hi Mariyan,
>
> > > Thank's for your post, well, first, this is not a tab panel,
> > > unfortunately.
>
> > > The home page was designed in dreamweaver(HTML page) than the whole
> > > objects, I mean textboxes, images, listboxes, etc are removed, and
> > > replaced byt gwt widgets.
>
> > > So you go like:
> > > HTMLPanel homepage = new HTMLPanel("here you put your html code
> > > without the html widgets, but with IDs");
> > > then your create your widgets with styles width, etc ... then you
> > > call:
> > > homepage.add(widget, "corresponding id in the html code");
>
> > > Hope this was helpful :)
>
> > > On Dec 3, 12:23 pm, mariyan nenchev  wrote:
>
> > > > Hi,
> > > > great, keep going.
> > > > There is one thing i need to know, how did you customize this tab 
> > > > panel. I
> > > > was trying to do the same tab bars but no success with decorated panel. 
> > > > You
> > > > may show sample code :)
> > > > Regards.- Hide quoted text -
>
> > > - Show quoted text -

--

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-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.