Re: Dynamic column

2014-05-27 Thread Davide Micheletti
Using FlexTable u can use the FlexTable.setWidget(row, column, WIDGET)
where you want i.e.:

FlexTable t = new FlexTable();
 t.setWidget(0, 0, new Button(W1));
 t.setWidget(0, 1, new Button(W2));
 t.setWidget(0, 2, new Button(W3));
 t.setWidget(1, 0, new Button(W4));
 t.setWidget(1, 1, new Button(W5));
 t.setWidget(1, 2, new Button(W6));
 t.setWidget(1, 3, new Button(W7));


PS: there is setHTML(row, col, HTML) too i.e.:

t.setHTML(0, 0, a href=# Link 1/a);
 ...
 ...




On Mon, May 26, 2014 at 5:01 PM, Kannan S mail.kanna...@gmail.com wrote:

 Hi  All

 Is there any way to display say 7 items in 2 rows in GWT.
 I also use GXT sencha. Is there a way to implement this in either GWT or
 GXT?
 The values should be clickable with and URL embedded in it which should
 open a new page

 Please advise
 Kannan.S

 --
 You received this message because you are subscribed to the Google Groups
 Google Web Toolkit group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to google-web-toolkit+unsubscr...@googlegroups.com.
 To post to this group, send email to google-web-toolkit@googlegroups.com.
 Visit this group at http://groups.google.com/group/google-web-toolkit.
 For more options, visit https://groups.google.com/d/optout.


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


DialogBox, PopupPanel closeHandler. Potential memory leak?

2014-05-27 Thread Vassilis Virvilis
Hi,

I have a non reusable dialogbox that I attach a closeHandler on it.
Everything works great.

Do I have to remove the closehandler on hide so the dialogbox can be
garbage collected or GWT takes care of it?

I did my homework and found this
https://code.google.com/p/google-web-toolkit/issues/detail?id=6356
but it is about the resizeHandler.

In gwt dialogbox and popuppanel source code I didn't find (but maybe I
missed it) anything that indicates that they cleanup the handlerManager

Do I need to add something equavalent for the CloseHandler in the case of
non reusable dialogbox (and popup panels)


-- 
Vassilis Virvilis

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


GWT for a quiz application

2014-05-27 Thread Alexander Fischer
Hey guys,

I want to build a web application which is a quiz for different users. The 
questions and answers are available in XML-files and the users in a MySQL 
database. Can I use the GWT for all this? Should I also use other 
frameworks to build this application?

Thank you for your answers :)

Greets,
Alex

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: GWT for a quiz application

2014-05-27 Thread confile
Yes you can use GWT!

Am Dienstag, 27. Mai 2014 16:13:49 UTC+2 schrieb Alexander Fischer:

 Hey guys,

 I want to build a web application which is a quiz for different users. The 
 questions and answers are available in XML-files and the users in a MySQL 
 database. Can I use the GWT for all this? Should I also use other 
 frameworks to build this application?

 Thank you for your answers :)

 Greets,
 Alex


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: GWT ways to speedup UI development

2014-05-27 Thread Slava Pankov
Once again. If data bindings are used, i.e. clear separation between view 
and model/viewModel, then complex validation scenarios are quite easy to 
implement and support.

On Monday, May 26, 2014 2:17:19 AM UTC-7, Mariusz Lewandowski wrote:

 Thank you all for the hints! I definitely go into the Errai documentation 
 and find out more!

 Actually, the idea of GWT composite widget and using is as a reusable 
 widget in ui.xml is well known to me.

 I am looking for some ways to fasten the development, for instance maybe 
 there is some tool to handle complex validation scenario and generate code?
 By the way, how do you handle validation in GWT - not the simple one, but 
 complex, tough scenarios?

 Making UI in GWT is always a big pain due to time.. 


 W dniu sobota, 24 maja 2014 02:45:29 UTC+2 użytkownik Slava Pankov napisał:

 For me combination of UiBinder templates and Errai data bindings works 
 perfectly fine.
 With UiBinder you can create reusable blocks/frames/components (I cannot 
 find a proper description), i.e. for example FlowPanel with some different 
 widgets can be considered as whole UI block. Then in other UiBinder 
 templates just reuse this block as composite widget.

 On Friday, May 23, 2014 8:03:41 AM UTC-7, Mariusz Lewandowski wrote:

 Hello guys,

 I am doing intensive research for the question How to speedup forms 
 development in GWT?. The figures shows itself, that most time consuming 
 tasks are those related to UI building. 
 I have a lot of form components (fields, listbox, textbox, calendards, 
 etc.) and some custom validation framework.
 Once a time there is a not standard business requirement to provide some 
 specific behavior in component, it could be field dependency (visibility or 
 validation dependencies).
 Moreover, all logic is compacted in one library used by many application 
 so I must be careful with changes due to the fact, that business requires 
 just change in aplication X leaving Y,Z and V untouched.

 I tried:
 - GWT plugin for Eclipse, but without luck
 - Some XForms standard to include in GWT project, but without luck.

 Have you got some standard in UI development? Or some usefull tools, 
 procedures?
 I am still suffering from consuming UI dev including not only GWT, but 
 also CSS, UI.XML etc.

 I am looking forward for asnwer, Cheers.



-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: GWT ways to speedup UI development

2014-05-27 Thread Burak Ulutoprak
You can use vaadin,  ext gwt or smart gwt which handles many complex issues
in UI development and validation with server side integration
26 May 2014 12:17 tarihinde Mariusz Lewandowski 
mariusz.lewandowsk...@gmail.com yazdı:

 Thank you all for the hints! I definitely go into the Errai documentation
 and find out more!

 Actually, the idea of GWT composite widget and using is as a reusable
 widget in ui.xml is well known to me.

 I am looking for some ways to fasten the development, for instance maybe
 there is some tool to handle complex validation scenario and generate code?
 By the way, how do you handle validation in GWT - not the simple one, but
 complex, tough scenarios?

 Making UI in GWT is always a big pain due to time..


 W dniu sobota, 24 maja 2014 02:45:29 UTC+2 użytkownik Slava Pankov napisał:

 For me combination of UiBinder templates and Errai data bindings works
 perfectly fine.
 With UiBinder you can create reusable blocks/frames/components (I cannot
 find a proper description), i.e. for example FlowPanel with some different
 widgets can be considered as whole UI block. Then in other UiBinder
 templates just reuse this block as composite widget.

 On Friday, May 23, 2014 8:03:41 AM UTC-7, Mariusz Lewandowski wrote:

 Hello guys,

 I am doing intensive research for the question How to speedup forms
 development in GWT?. The figures shows itself, that most time consuming
 tasks are those related to UI building.
 I have a lot of form components (fields, listbox, textbox, calendards,
 etc.) and some custom validation framework.
 Once a time there is a not standard business requirement to provide some
 specific behavior in component, it could be field dependency (visibility or
 validation dependencies).
 Moreover, all logic is compacted in one library used by many application
 so I must be careful with changes due to the fact, that business requires
 just change in aplication X leaving Y,Z and V untouched.

 I tried:
 - GWT plugin for Eclipse, but without luck
 - Some XForms standard to include in GWT project, but without luck.

 Have you got some standard in UI development? Or some usefull tools,
 procedures?
 I am still suffering from consuming UI dev including not only GWT, but
 also CSS, UI.XML etc.

 I am looking forward for asnwer, Cheers.

  --
 You received this message because you are subscribed to the Google Groups
 Google Web Toolkit group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to google-web-toolkit+unsubscr...@googlegroups.com.
 To post to this group, send email to google-web-toolkit@googlegroups.com.
 Visit this group at http://groups.google.com/group/google-web-toolkit.
 For more options, visit https://groups.google.com/d/optout.


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Possible solution to read a Rolling text file with pagination?

2014-05-27 Thread Jeremy Kittel
HI,

I've a questions if anyone has an idea on how to possibly read a rolling 
text file with pagination.  The file is will grow up tp 1024k and then roll 
into archived text file

i.e. rolling log filename blah.log.0, blah.log.1, blah.log.2, etc..

I need a way to retrieve the current data and page back words if possible 
to see the previous text files contents.

This would be done using RPC call to the server from client.

Any direction would be greatly appreciated.

Jeremy

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: [gwt-contrib] Add Object.clone as throwing implementation

2014-05-27 Thread Rocco De Angelis
Hi Roberto,

okay I understand the problem. But is it really necessary to also add the 
clone method to JSO?
Implementing a clone method for objects in javaScript can be very hard if 
it should work in all cases :)

-- 
You received this message because you are subscribed to the Google Groups GWT 
Contributors group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/0c2981bb-0b2f-4b5e-b953-0172ecc0f29f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[gwt-contrib] Re: Native Authorization in GWT

2014-05-27 Thread Zied Hamdi OneView


 I created an 
 issuehttps://code.google.com/p/google-web-toolkit/issues/detail?id=8735where
  I specify more clearly the change 
 proposal: https://code.google.com/p/google-web-toolkit/issues/detail?id=8735


I'm getting this message:
 

 I'm just unable to push the code for review


Tue May 27 12:28:27 2014

Pushing to https://gwt.googlesource.com/gwt

POST git-receive-pack (24854 bytes)

remote: Resolving deltas: 2% (1/34) 

remote: Resolving deltas: 5% (2/34) 

remote: Resolving deltas: 8% (3/34) 

remote: Resolving deltas: 11% (4/34) 

remote: Resolving deltas: 14% (5/34) 

remote: Resolving deltas: 17% (6/34) 

remote: Resolving deltas: 20% (7/34) 

remote: Resolving deltas: 23% (8/34) 

remote: Resolving deltas: 26% (9/34) 

remote: Resolving deltas: 29% (10/34) 

remote: Resolving deltas: 32% (11/34) 

remote: Resolving deltas: 35% (12/34) 

remote: Resolving deltas: 38% (13/34) 

remote: Resolving deltas: 41% (14/34) 

remote: Resolving deltas: 44% (15/34) 

remote: Resolving deltas: 47% (16/34) 

remote: Resolving deltas: 50% (17/34) 

remote: Resolving deltas: 52% (18/34) 

remote: Resolving deltas: 55% (19/34) 

remote: Resolving deltas: 58% (20/34) 

remote: Resolving deltas: 61% (21/34) 

remote: Resolving deltas: 64% (22/34) 

remote: Resolving deltas: 67% (23/34) 

remote: Resolving deltas: 70% (24/34) 

remote: Resolving deltas: 73% (25/34) 

remote: Resolving deltas: 76% (26/34) 

remote: Resolving deltas: 79% (27/34) 

remote: Resolving deltas: 82% (28/34) 

remote: Resolving deltas: 85% (29/34) 

remote: Resolving deltas: 88% (30/34) 

remote: Resolving deltas: 91% (31/34) 

remote: Resolving deltas: 94% (32/34) 

remote: Resolving deltas: 97% (33/34) 

remote: Resolving deltas: 100% (34/34) 

remote: Resolving deltas: 100% (34/34) 

remote: 

remote: Processing changes: refs: 1 

remote: Processing changes: refs: 1, done 

To https://gwt.googlesource.com/gwt

! [remote rejected] uibinderfactory - master (prohibited by Gerrit)
error: failed to push some refs to 'https://gwt.googlesource.com/gwt' 

-- 
You received this message because you are subscribed to the Google Groups GWT 
Contributors group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/3a667318-c74a-4178-bec7-62165643293e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[gwt-contrib] Re: Native Authorization in GWT

2014-05-27 Thread Thomas Broyer
You have to push to the special reference refs/for/master to create a 
review to be merged to the 'master' branch.

git push origin HEAD:refs/for/master

(replace HEAD with a local branch if you don't want to push the current 
commit but another reference/commit)

Note, you also have to install the hook that will generate the Change-Id 
line on commit; 
see http://www.gwtproject.org/makinggwtbetter.html#submittingpatches
If you hadn't installed it already, just amend your commit and the hook 
will run and modify your commit message appropriately.
Also keep in mind that 1 commit == 1 review !

On Tuesday, May 27, 2014 1:32:35 PM UTC+2, Zied Hamdi OneView wrote:

 I created an 
 issuehttps://code.google.com/p/google-web-toolkit/issues/detail?id=8735where
  I specify more clearly the change proposal: 
 https://code.google.com/p/google-web-toolkit/issues/detail?id=8735


 I'm getting this message:
  

 I'm just unable to push the code for review


 Tue May 27 12:28:27 2014

 Pushing to https://gwt.googlesource.com/gwt

 POST git-receive-pack (24854 bytes)

 remote: Resolving deltas: 2% (1/34) 

 remote: Resolving deltas: 5% (2/34) 

 remote: Resolving deltas: 8% (3/34) 

 remote: Resolving deltas: 11% (4/34) 

 remote: Resolving deltas: 14% (5/34) 

 remote: Resolving deltas: 17% (6/34) 

 remote: Resolving deltas: 20% (7/34) 

 remote: Resolving deltas: 23% (8/34) 

 remote: Resolving deltas: 26% (9/34) 

 remote: Resolving deltas: 29% (10/34) 

 remote: Resolving deltas: 32% (11/34) 

 remote: Resolving deltas: 35% (12/34) 

 remote: Resolving deltas: 38% (13/34) 

 remote: Resolving deltas: 41% (14/34) 

 remote: Resolving deltas: 44% (15/34) 

 remote: Resolving deltas: 47% (16/34) 

 remote: Resolving deltas: 50% (17/34) 

 remote: Resolving deltas: 52% (18/34) 

 remote: Resolving deltas: 55% (19/34) 

 remote: Resolving deltas: 58% (20/34) 

 remote: Resolving deltas: 61% (21/34) 

 remote: Resolving deltas: 64% (22/34) 

 remote: Resolving deltas: 67% (23/34) 

 remote: Resolving deltas: 70% (24/34) 

 remote: Resolving deltas: 73% (25/34) 

 remote: Resolving deltas: 76% (26/34) 

 remote: Resolving deltas: 79% (27/34) 

 remote: Resolving deltas: 82% (28/34) 

 remote: Resolving deltas: 85% (29/34) 

 remote: Resolving deltas: 88% (30/34) 

 remote: Resolving deltas: 91% (31/34) 

 remote: Resolving deltas: 94% (32/34) 

 remote: Resolving deltas: 97% (33/34) 

 remote: Resolving deltas: 100% (34/34) 

 remote: Resolving deltas: 100% (34/34) 

 remote: 

 remote: Processing changes: refs: 1 

 remote: Processing changes: refs: 1, done 

 To https://gwt.googlesource.com/gwt

 ! [remote rejected] uibinderfactory - master (prohibited by Gerrit)
 error: failed to push some refs to 'https://gwt.googlesource.com/gwt' 


-- 
You received this message because you are subscribed to the Google Groups GWT 
Contributors group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/bf896b37-0992-43d4-bc06-a548e88f76b7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.