Re: How to tell GWT compiler to compile for only one specific browser

2010-04-21 Thread Bonor
set-property name=user.agent value=gecko / value can be: ie6,gecko,gecko1_8,safari,opera On 21 apr, 09:05, Blessed Geek blessedg...@gmail.com wrote: You can specify in the gwt.xml to restrict compilation to a certain/ list of browser(s). I would do it to restrict to firefox because I

Re: Highlight flextable row when tabbing

2010-04-08 Thread Bonor
); System.out.println(= + row+ +tb.getText()); } ...FlexTable implements FocusHandler and with every textbox.getTextBox().addFocusHandler(this); Note that this snippet DOESN'T work. On 8 apr, 08:00, rjcarr rjc...@gmail.com wrote: Hi Bonor- Here's a quick algorithm.  I'm sure it isn't

Re: Highlight flextable row when tabbing

2010-04-08 Thread Bonor
); int row = DOM.getChildIndex(body, tr); System.out.println(= + row + + tb.getText()); } On 8 apr, 11:16, Bonor bono...@gmail.com wrote: Hello Robert, Thanks for the reply. Actually I was hoping for a 'shorter' way to determine the current row

Highlight flextable row when tabbing

2010-04-07 Thread Bonor
I want to highlight the current row in a FlexTable (the cells contain TextBoxes). If a user tabs through the cells, how can I highlight the current row? Thanks in advanced -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: How can I join to development gwt eclipse plugin together?

2010-03-10 Thread Bonor
Hi Lee, What would be great is an Eclipse plugin that can transalate properties files with the push of a button (google api http://code.google.com/p/google-api-translate-java/). This is of course not only useful for GWT developers... -- You received this message because you are subscribed to the

Re: My projects

2010-03-08 Thread Bonor
I am missing History functionality (back and forward buttons) -- 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

RichText, bug with createLink?

2010-02-02 Thread Bonor
The createLink() doens't seems to work. Not only in my app but also in the Google Showcase: http://gwt.google.com/samples/Showcase/Showcase.html#CwRichText Is it a bug? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Re: GWT + JDBC

2010-01-28 Thread Bonor
The driver (jar file) should be in the webservers lib directory. On 28 jan, 01:27, ddyer ddyer-goog...@real-me.net wrote: Can someone explain why this occurs?  Im trying to connect a JDBC driver to the server end of a test application.   The JDBC driver is in the classpath. The server is

Re: eclipse with google plugin

2009-12-12 Thread Bonor
The obvious solution would be to increase your memory. How much mem do you have? I had a similar problem with my previous pc which had 512MB. I had a large project and sometimes on opening the Package Explorer it freezed the system. Upgrading tot 1 GB was sufficient for me. On 12 dec, 12:11,

Re: development mode isn't updating

2009-12-11 Thread Bonor
First I couldn't see the refresh and breakpoint changes either in the browser. I also never got the Extension prompt either (like it says in http://code.google.com/intl/nl/webtoolkit/usingeclipse.html). Try recompiling the project with GWT recompile. Then refresh the browser and the prompt for

Re: How to get tab Widget in a TabPanel?

2009-06-24 Thread Bonor
beforeIndex) and add the widget to an ArrayList , for example... then implement a new method...public Widget getTabWidget(int index) and return the widget from the arrayList good work :P On 20 Giu, 01:47, Bonor bono...@gmail.com wrote: tabPanel.add( panelA, panelB); How do I get

Re: Hide PopupPanel....

2009-06-24 Thread Bonor
Well, I tell myself...first you read the manual... than you know you need to add addMouseOutHandler() On 24 jun, 00:57, Rey rey...@gmail.com wrote: I want to controle the hiding of my PopupPanel PopupPanel implements MouseOutHandler.. . .         @Override         public void

Re: How to get tab Widget in a TabPanel?

2009-06-20 Thread Bonor
pf, only REAL programmers please answer. On 20 jun, 02:04, Booth Martin bo...@hiapes.com wrote: tabPanel.getWidget(1) might work? Bonor wrote: tabPanel.add( panelA, panelB); How do I get de widget panelB? tabPanel.getWidget(0) returns panelA, so how about panelB

How to get tab Widget in a TabPanel?

2009-06-19 Thread Bonor
tabPanel.add( panelA, panelB); How do I get de widget panelB? tabPanel.getWidget(0) returns panelA, so how about panelB? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: Mysql access dienied in GWT hosted mode

2009-06-11 Thread Bonor
never mind On 10 jun, 17:35, Bonor bono...@gmail.com wrote: When doing a RPC call my Service get's an Access Denied error when trying to connect with mysql. java.security.AccessControlException: access denied (java.lang.RuntimePermission modifyThreadGroup) Where do i grant access

Mysql access dienied in GWT hosted mode

2009-06-10 Thread Bonor
When doing a RPC call my Service get's an Access Denied error when trying to connect with mysql. java.security.AccessControlException: access denied (java.lang.RuntimePermission modifyThreadGroup) Where do i grant access? Suggestions? --~--~-~--~~~---~--~~ You