Re: GWT UI widgets auto-alignment inside different Panels proper solution needed.

2013-04-02 Thread BM
I am just worried about depending on a third party library and loosing support from actual Google. So with new updates to GWT, things won't be compatible for immediate upgrade or we would need to wait for this Twitter Bootstrap to update and compatible with every new GWT. On Monday, April 1,

Re: GWT UI widgets auto-alignment inside different Panels proper solution needed.

2013-04-02 Thread Jens
Why dont you extend the GWT classes and give them your desired default values? E.g. instead of HorizontalPanel you would create a CenteredContentPanel that extends HorizontalPanel and sets its own size to 100% along with the desired alignment? Alternatively you can also look at @UiChild for

GWT UI widgets auto-alignment inside different Panels proper solution needed.

2013-04-01 Thread BM
We use GWT inside every other panels like VerticalPanel, HorizontalPanel, DockLayoutPanel, etc. The thing I feel it is cumbersome in assigning alignment (both horizontal and vertical) for each elements in those panels. One way is : g:HorizontalPanel width=100% height=100%

Re: GWT UI widgets auto-alignment inside different Panels proper solution needed.

2013-04-01 Thread Subhrajyoti Moitra
i had sorted these issues by using http://gwtbootstrap.github.com/ Basically letting the CSS do the aligning. its dependent on your app of-course! HTH, Subhro. On Mon, Apr 1, 2013 at 8:04 PM, BM bhushan.ma...@gmail.com wrote: We use GWT inside every other panels like VerticalPanel,

Re: GWT UI widgets auto-alignment inside different Panels proper solution needed.

2013-04-01 Thread BM
Interesting. Thanks for that. Is it compatible with GWT 2.5? What my real goal is to have global way to handle consistently looking GWT forms on UI binder for each different GWT Views. Since you worked on it, would love to see if you have further explanation on the example I gave how can

Re: GWT UI widgets auto-alignment inside different Panels proper solution needed.

2013-04-01 Thread Subhrajyoti Moitra
...handle consistently looking GWT forms= Twitter bootstrap gives a very consistent lnf to forms. For html based templates try this concept from a larger framework-Errai. https://docs.jboss.org/author/display/ERRAI/Errai+UI On Mon, Apr 1, 2013 at 9:00 PM, BM bhushan.ma...@gmail.com