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 Thomas. The page in question was using. 

 -moz-transform: scale3d(1.21098, 1.21098, 1);


 Hopefully ClientRect can be updated to correct this defect in the near 
 future.


 The obvious fix would be to make the methods' return type 'double' 
 instead of 'int', but unfortunately that would be a breaking change (albeit 
 a small one), so I'm not sure how to best fix this.


-- 
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/-/_d970qjSUZQJ.
To post to this group, send email to google-web-toolkit@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.



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

2012-06-29 Thread Flori
Hey all,

I have absolutley no idea why this warning appears.. maybe someone of u can 
give me an answer or a hint in the correct direction:

[WARN] [pacadm] - Something other than an int was returned from JSNI method 
'@com.google.gwt.dom.client.DOMImplStandardBase$ClientRect::getLeft()': 
Rounding double (5.454545021057129) to int for int

DevMode is still working.. but these warnings are endless (they don't 
appear in the javascript console)! I'm using gxt 2.2.5 along with gwt 2.4 
(same with gwt 2.5 RC1).

https://lh3.googleusercontent.com/-fhsOtpq1_Kg/T-14KRCADjI/APY/N95gZlEpF2s/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 email to google-web-toolkit@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.



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 google-web-toolkit@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: 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 communication you only need to copy
the generated folder by the GWT compiler (the javascript stuff) into
any folder of your webserver (e.g. apache2). Otherwise you have to use
a war and a webserver like tomcat, glassfish, jboss, jetty etc.

I do not see any way and point in using a jar for a GWT compiled app
since these files should be accessible via a browser.

Hope it helps, cheers

On 3 Mrz., 17:32, zixzigma zixzi...@gmail.com wrote:
 Hello,
 in GWT, we write code in Java, that GWT Compiler , compiles to JavaScript.

 - when deploying the application, do you think we need compiled Java class
 files in our final WAR ?
 or we just need the generated .js ?

 I look inside the war file generated, and I see my client-side Java classes
 in classes folder.
 this made me wonder, weren't these classes supposed to be compiled to
 JavaScript ?
 so why they ended up in WAR ?

 - is it possible to compile GWT App into a JAR instead of WAR ?

 - is maven gwt:compile capable of producing jar ? instead of war ?

 Thank You

-- 
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-toolkit@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: 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 this is not the best way to layout since its
 done in javascript and also might limit us when we will need more
 complex graphic designes.

 i was wondering if there a best practice regarding the layout of GWT
 applications in general and GXT in particular.
 should we only use the widgets from GXT and use CSS as the layout ?

 thanks

 Shlomi

-- 
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.



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();
parentElement.insertAfter(picker.getElement(), inputElement);
picker.pickerWrapper.getElement().insertFirst(inputElement);

This code works fine together with the DOM, but my picker contains an
HTMLPanel which has an ClickHandler. If I attach the picker to the DOM
using RootPanel.get().add(picker); the ClickHandler seems to works
fine. If I use the way described above the handler doesn't seemss to
work anymore :( Any ideas/hints?

Thanks in advance! cheers

-- 
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: 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,

 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();
 parentElement.insertAfter(picker.getElement(), inputElement);
 picker.pickerWrapper.getElement().insertFirst(inputElement);

 This code works fine together with the DOM, but my picker contains an
 HTMLPanel which has an ClickHandler. If I attach the picker to the DOM
 using RootPanel.get().add(picker); the ClickHandler seems to works
 fine. If I use the way described above the handler doesn't seemss to
 work anymore :( Any ideas/hints?

 Thanks in advance! cheers

-- 
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: 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.

-- 
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: 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 showcase, fonts are
 large, because users complain of the small fonts, this is the font size used
 in a screen resolution of 1024x768 and this is a pattern of development, at
 least around here. ;-)

 --
 *Vagner Araujo

 O PLANETA É O MEU PAÍS, E A CIÊNCIA É A MINHA RELIGIÃO ! INDO AO INFINITO E
 ALÉM... !!

 *

-- 
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: 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 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: 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 wrote:
 Ok, that's it! this code solved my problem. But i have another one. For
 example, i use this code to select the state, but how i can do another
 combobox that show only the cities previously selected in the previous
 combobox?

 Thanks for the help!

 2010/10/11 Carl Pritchett bogusggem...@gmail.com





  Hi,

  Two tips: Post GXT questions on the Sencha forums and download the GXT
  source code and search it. The source is invaluable.

  The stock class is not part of the extGWT library, but it is in the
  source code for the examples. For 2.2.0 it is in samples\resources\src
  \com\extjs\gxt\samples\resources\client\model.
  You can add that to your project to get it working, but ultimatley you
  don't want to use the data in the stocks file, you want to use your
  own data in the combo box.

  You probably want a to create simple list of state strings and
  SimpleComboBoxString

  e.g.

  SimpleComboBoxString combo = new SimpleComboBoxString();
  combo.add(Iowa);
  combo.add(Illinois);
  
  combo.setSimpleValue(Ohio);

  Regards,
  Carl Pritchett

  On Oct 11, 10:28 am, Diego Venuzka dvenu...@gmail.com wrote:
   Hello!
   On my project, i'll need a combox, to filter states. On the 
   sencha.comsite,
   i found this example:http://www.sencha.com/examples/#combobox
   But this code dont work and show: Class Stock not found. I guess that
   class have the data to show on combo...But how i create that class? I
  still
   searching on entire site and i don't found nothing...
   Somebody have an example to send?

   thanks! =)
   --
   Diego Venuzka

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

 --
 Diego Venuzka

-- 
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: 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: 
http://www.sencha.com/forum/forumdisplay.php?45-Gxt-Help
would be the better place for for this question :)

-- 
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.



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 should I use Gilead instead
Beanlib?

Can someone explain that to me?

cheers!

-- 
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.



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 application. So it's all
working fine - i can include my gwt module into a xhtml view - but i
don't know how i can use the hosted mode since my files are placed in
the generated view folder instead of the default gwt war folder! Can
someone point me in the right direction? Thanks a lot!

greetings!

-- 
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: 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 page: http://www.sencha.com/helpcenter/index.jsp

however - nice tutorial

-- 
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: 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 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: 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 Pattern (Action/Result/Handler) with Seam. If
you are interested leave a message.

-- 
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.



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
java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
at java.util.ArrayList.RangeCheck(Unknown Source)
at java.util.ArrayList.get(Unknown
Source)

(@see http://seamframework.org/Community/SeamGWT17)

Please can someone help me to get this example running with gwt 1.7.1
or can anyone give me a just working example with the versions
specified above!? That would help me a lot!

--

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.