Re: ..Something other than an int was returned.. warnings in DevMode

2012-07-01 Thread Flori
Thanks Thomas, I didn't notice that the zoom was at 110%. Has solved my problem! On Friday, June 29, 2012 5:28:02 PM UTC+2, Thomas Broyer wrote: On Friday, June 29, 2012 4:39:28 PM UTC+2, Joseph Lust wrote: I noticed getting this issue myself last week. Thanks for solving it for me

..Something other than an int was returned.. warnings in DevMode

2012-06-29 Thread Flori
/s1600/warnings.png Thanks in advance! cheers Flori -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/vnJiefc3x5kJ. To post to this group, send

Ext GWT 3.0 Developer Preview 1

2011-06-16 Thread Flori
For anyone who can no longer expect it: http://www.sencha.com/blog/ext-gwt-3-dev-preview-1/ Looks promising. Waiting for the first RC... ;) -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Questions on Compiling GWT App for deployment

2011-03-04 Thread Flori
Hi zixzgima, you only need to compile (javac) the 'shared' and 'server' folder (and maybe your service interfaces). What resources are compiled (javac) is a setting in the Eclipse Java Build Path. There you can deactivate the compilation of the 'client' folder. If you haven't got a server side

Re: GXT layout VS CSS layout

2011-01-10 Thread Flori
You should build your layout with GXT 2 and looking forward to GXT 3.0. It's hard to customize GXT widgets your way - but it's possible. On 10 Jan., 12:34, shlomico shlomicthail...@gmail.com wrote: Hi We use the GXT library widgets extensively and its layout managers. our designer claim that

Lost handlers after moving Element of a Widget

2010-12-28 Thread Flori
Hey all, I've got some code which moves some elements from one to another position: CustomPicker picker = new CustomPicker(textBox); //FlowPanel with custom elements inside... Element inputElement = textBox.getElement(); Element parentElement = inputElement.getParentElement();

Re: Lost handlers after moving Element of a Widget

2010-12-28 Thread Flori
Okay.. I've to call onAttach manually after I added the picker element to the DOM to get my custom handlers working: picker.onAttach(); RootPanel.detachOnWindowClose(picker); I don't know really why.. but it's working fine for me. On 28 Dez., 11:54, Flori floon...@googlemail.com wrote: Hey all

Re: All I Want for Christmas is a powerful Widget Library from Google !

2010-11-16 Thread Flori
I agree with Thomas, but on the other hand it would be nice to have some more core functionality by default like drag and drop, fx or something like a light weight (and easy customizable through own stylesheets) tree widget (without any icons, mouseover styles etc.). So I also agree with zixzigma.

Re: PureGWT Showcase Preview Part II

2010-11-04 Thread Flori
I totally agree with Kasper. Functionality really cool. But anyway, can you provide a descriptive link about PureGWT or explain its objectives in more detail? greetings Flori On 4 Nov., 09:18, Vagner Araujo araujo...@jdukes.com wrote: Hi, thanks for your reply, but this is still a preview

Re: What Major Companies Use GWT???

2010-10-27 Thread Flori
http://www.jboss.org/drools/drools-guvnor.html uses GWT + Errai + GXT and JBOSS as Application Server -- 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

Re: Help with Combobox (extGWT)

2010-10-12 Thread Flori
Create a new store with the current selection... something like that: ListStoreModelData newStore = new ListStoreModelData(); newStore.add(combo.getSelection()); ComboBoxModelData newBox = new ComboBoxModelData(); newBox.setStore(newStore); On 12 Okt., 17:57, Diego Venuzka dvenu...@gmail.com

Re: Help with Combobox (extGWT)

2010-10-12 Thread Flori
Ouh and if you want to change the data in the second combo live you have to set: newStore.setMonitorChanges(true); and you need to add an selectionChangedlistener: combo.addSelectionChangedListener(mylistener); which updates the models in newStore. And as Carl already said:

GWT with Hibernate - Gilead vs. Beanlib

2010-09-15 Thread Flori
Hey all, To use my hibernate entities with Beanlib i need two lines of codes: HibernateBeanReplicator replicator = new Hibernate3BeanReplicator(null, null, myVetoer); MyHibernateServiceObject serviceObject = replicator.copy(myHibernateServiceObject); Why Gilead makes the whole so complex, why

GWT 2.x/Jboss/Seam gen

2010-09-07 Thread Flori
Hey all, did someone manage to run a seam generated application with gwt compilied sources in hosted mode on JBoss? http://community.jboss.org/wiki/UseJBossToolswithGoogleGWTPlugin - does not help really in my case - its the wrong order ;) I already have my application and want to ADD a gwt

Re: Available - GXT with GWT (on Eclipse) tutorial

2010-07-12 Thread Flori
- Just include the gxt jar in the lib folder and add it to the build path - add this to your module xml: inherits name='com.extjs.gxt.ui.GXT'/ - add this to your main page link rel=stylesheet type=text/css href=css/ext-all.css / - debug works fine in hosted mode Also u can have a look at this

Re: How to show a load screen during rpc call?

2010-07-04 Thread Flori
Have a look at the following loading panel: http://www.sencha.com/examples/explorer.html - you can find the explorer src and the loading image here: http://www.sencha.com/products/gwt/download.php -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: Seam and GWT DE RPC

2010-06-28 Thread Flori
- Make sure that you use on server and client the same gwt- servlet.jar! - Make sure all the server files are compiled and are available as class files in the ear or rather war (and in the right place). Maybe it helps. I will try in the near future whether it is possible to use the GWT Dispatch

Seam Remoting Example compilied with GWT 1.7.1

2009-12-14 Thread Flori
Hi all, I try to get Seam (2.2.0.GA), jboss (5.1.0.GA) and GWT working. If i compile the seam remoting sample with GWT 1.5.2 everything works fine. Compiled files with 1.7.1 throws this stack (after the button click): 15:47:54,844 ERROR [[/seam-gwt]] Exception while dispatching incoming RPC call