Re: ExceptionInInitializerError when using add-linker name=xsiframe /

2014-04-04 Thread Thomas Broyer
This is most likely due to the fact that xsiframe does NOT inject scripts declared in your gwt.xml. But cmon, the last release of GWT-Ext was almost *5½ YEARS AGO!* It's time to move on! https://code.google.com/p/gwt-ext/downloads/detail?name=gwtext-2.0.6.zipcan=2q= On Thursday, April 3, 2014

Re: Development Mode will not be supported in Firefox 27+

2014-04-04 Thread Thomas Broyer
On Wednesday, April 2, 2014 3:33:43 PM UTC+2, Thomas Broyer wrote: On Wednesday, April 2, 2014 3:05:22 PM UTC+2, stuckagain wrote: For me it will depend how well SDM works with IE because that is the main browser that I need to support. Not all GWT applications are put on the internet

Re: flextable rows

2014-04-04 Thread Davide Micheletti
for(col = 0; col 3; col++) FlexTable.clearCell(row, column); FlexTable.removeRow(row_to_delete); that removes the Widgets from the row and if there aren't widgets the contents will be only cleared.. However if you use the standard function, insertRow(int beforeRow) of gwt, it right that

Re: flextable rows

2014-04-04 Thread Davide Micheletti
EDIT: FlexTable.clearCell(row_to_delete, column); On Fri, Apr 4, 2014 at 12:21 PM, Davide Micheletti d.michelett...@gmail.com wrote: for(col = 0; col 3; col++) FlexTable.clearCell(row, column); FlexTable.removeRow(row_to_delete); that removes the Widgets from the row and if there

Re: ExceptionInInitializerError when using add-linker name=xsiframe /

2014-04-04 Thread Adrian Bastholm
Unfortunately my customer thinks otherwise :P -- 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

Re: ExceptionInInitializerError when using add-linker name=xsiframe /

2014-04-04 Thread Alain Ekambi
If you want to use Ext JS with GWT you should try Ext4j then. 2014-04-04 13:16 GMT+02:00 Adrian Bastholm javahax...@gmail.com: Unfortunately my customer thinks otherwise :P -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: ExceptionInInitializerError when using add-linker name=xsiframe /

2014-04-04 Thread Adrian Bastholm
Thanks, i'll have a look -- 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

Re: Development Mode will not be supported in Firefox 27+

2014-04-04 Thread Ivan Markov
Regarding sourcemap support for fields/variable names deobfuscation: 1- I found some thoughts on SourceMap.next here: http://fitzgeraldnick.com/weblog/55/ . It goes as far as suggesting how conditional breakpoints and eval() expressed in the source language can work for sourcemap-based

Frame context menu and mouse listener

2014-04-04 Thread Leon
I like to remove a context menu from Frame and add some mouse listener into Frame. I try the following code and it doesn't work: frame.addHandler(new MouseDownHandler() { @Override public void onMouseDown(MouseDownEvent event) { Element

Re: flextable rows

2014-04-04 Thread Amir kessentini
thank you brother ;) it's works :D Le jeudi 3 avril 2014 02:28:24 UTC+2, Amir kessentini a écrit : hi in my devis view , i have a flextable containes many rows.this flextable has 3 column wich represents a model of data. each row containes 3 textbox that represent data who will be saved on

app controller

2014-04-04 Thread Amir kessentini
j'ai une classeview constitué de deux panels:le premier sert à afficher la liste des devis alors que le deuxiéme affiche une description détaillé sur chaque devis selectionnéé au niveau de grid.j'ai un boutton ajouter devis auquel est rattaché une actionje veux lorsque je clique sur ce boutton

Re: Textbox Does Not Display Correctly When Using Chrome

2014-04-04 Thread KGD
Thank you for your response. Unfortunately, I've had to focus on other issues and am now coming back to this issue. Specifically, the layout, placement, sizing and alignment do not seem to be honored by the various browsers. The two sets of screen shots give you an idea what I'm seeing.

Re: [gwt-contrib] Obfuscated compilation

2014-04-04 Thread Jens
Am Freitag, 4. April 2014 07:37:59 UTC+2 schrieb Michael Vogt: It would be interesting to look at the Symbol map corresponding to the breaking permutation and see what are the functions Bf and Xeb. Oh, of course! How to access them? By default they are generated in

Re: [gwt-contrib] Obfuscated compilation

2014-04-04 Thread Michael Vogt
Thanks Yens. IntelliJ hides it pretty deep into its .IntelliJIdeaxx folder. -- http://groups.google.com/group/Google-Web-Toolkit-Contributors --- You received this message because you are subscribed to the Google Groups GWT Contributors group. To unsubscribe from this group and stop receiving

Re: [gwt-contrib] Obfuscated compilation

2014-04-04 Thread Thomas Broyer
You can also generate source maps; see https://gwt.googlesource.com/gwt-site-webapp/+/423256d63e17eb9e117c61d2ba6ad4adbf32b15f%5E%21/ for how it was enabled for gwtproject.org. Basically, enable sourcemaps in your gwt.xml, configure the URL to the sourcemaps (still in your gwt.xml) pass