Re: Defining a Jetty realm in hosted mode

2012-03-18 Thread TimD
I should clarify, I mean GWT Eclipse Plugin 2.5.1 (GWT 2.4). The following login-config in the web.xml works fine in Tomcat: login-config auth-methodBASIC/auth-method /login-config I don't actually want to have to define a Jetty realm, but with the above

Re: Defining a Jetty realm in hosted mode

2012-03-18 Thread TimD
Sorry, that Jetty warning should have read: Starting Jetty on port [WARN] Unknown realm: Default -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: ff11 gwt dev plugin

2012-03-18 Thread Alan Leung
http://acleung.com/gwt-dev-plugin-mac.xpihttp://acleung.com/gwt-dev-plugin.xpi For the mac 32/64 FF11 users. -Alan On Sat, Mar 17, 2012 at 9:32 AM, Fabricio Pizzichillo fpizzichi...@gmail.com wrote: Thanks! 2012/3/17 Alan Leung acle...@google.com Correct link:

Re: GWT Dev plug-in for Firefox 11

2012-03-18 Thread Alan Leung
http://acleung.com/gwt-dev-plugin-mac.xpihttp://acleung.com/gwt-dev-plugin.xpi For the mac 32/64 FF11 users. -Alan On Sat, Mar 17, 2012 at 10:49 AM, phb ghuenem...@gmail.com wrote: Thanks. Any ETA on Vista x64? On Mar 17, 3:07 am, Alan Leung acle...@google.com wrote: I had just

Re: Defining a Jetty realm in hosted mode

2012-03-18 Thread TimD
I should clarify, I mean GWT Eclipse Plugin 2.5.1 (GWT 2.4). The following login-config in the web.xml works fine in Tomcat: login-config auth-methodBASIC/auth-method /login-config I don't actually want to have to define a Jetty realm, but with the above

Re: Defining a Jetty realm in hosted mode

2012-03-18 Thread TimD
I should clarify, it's GPE 2.5.1 (GWT 2.4). The following login-config in the web.xml works fine in Tomcat: login-config auth-methodBASIC/auth-method /login-config I don't actually want to have to define a Jetty realm, but with the above web.xml I get the

Click on Gauge

2012-03-18 Thread hugues2
Hi, I am trying to make a Gauge clickable using the code below : Widget gauge = new MyGauge(tableData, tableOptions); gauge.addDomHandler(new ClickHandler() { public void onClick(ClickEvent e) { Window.alert(gauge has been clicked); }

Re: GWT Dev plug-in for Firefox 11

2012-03-18 Thread Joseph Lust
Works Ubuntu 11.10 x64. Thanks so much. Just after reading this thread I discovered that FF11 had updated a few minutes before. Seems that it is non-trivial to disable FF updates on Ubuntu. You saved my day Alan! Sincerely, Joseph -- You received this message because you are subscribed to the

Re: Register your company if you are using GWT

2012-03-18 Thread Joseph Lust
Touche, Perhaps that line had too much Java love on it. I based that on my experience of writing some quite elaborate pure JS applications for the two years in ExtJs (backed by Struts) before moving to GWT. In those applications (100K+ Js lines) it was just a serious pain that there was: -

Re: HTML Code Generation

2012-03-18 Thread Joseph Lust
HK, Have you tried calling that function from inside a GWTTestCase? You could use that to pull out the HTML without a browser. Sincerely, Joseph -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: ff11 gwt dev plugin

2012-03-18 Thread Knubo
On Sunday, March 18, 2012 9:10:27 AM UTC+1, Alan Leung wrote: http://acleung.com/gwt-dev-plugin-mac.xpihttp://acleung.com/gwt-dev-plugin.xpi For the mac 32/64 FF11 users. I installed it, but it tells med that it is not compatible with FF11. KEB -- You received this message because you

Hibernate , how to get data from join tables.

2012-03-18 Thread nofear
Hello guys, My main problem is that i cant write and i couldnt find the correct query form to fetch data from join tables , for example in my project , here's my database form ; Student Table Result Table -studentId -resultId -studentName

hibernate , getting data List from database problem

2012-03-18 Thread nofear
Hi guys , İ have a hibernate problem again, here's my problem , I have an exam schedule table in my database and i inserted 3 rows of data in this table. But when i try to get the data from database using hibernate, just the first data comes. i mean , if there are 3 rows in the table , so the

Popup show/hide toggle functionality with auto hide enabled

2012-03-18 Thread Jonas
I have a popup with setAutoHideEnabled (it automatically hides when you click somewhere outside of it). I display it using a button but I want to have toggle functionality. First click shows the popup, then second click on button hides it (but clicking somewhere outside also hides it). The

Re: Popup show/hide toggle functionality with auto hide enabled

2012-03-18 Thread Jens
Try using: popup.addAutoHidePartner(yourButton.getElement()); This should disable the auto hide functionality when clicking on the button, so you can control the popup visibility yourself based on popup.isShowing() when clicking the button. -- J. Am Sonntag, 18. März 2012 22:31:56 UTC+1

Re: ff11 gwt dev plugin

2012-03-18 Thread Alan Leung
I installed it, but it tells med that it is not compatible with FF11. Can you tell me which .xpi and what OS you are using? -Alan You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: hibernate , getting data List from database problem

2012-03-18 Thread Alfredo Quiroga-Villamil
K, this is really a GWT forum, not hibernate but I will try to give you some guidance and hopefully it leads you down the right path. At first glance I am at this moment not able to see anything wrong with the code you have. A couple of suggestions though: a) The transaction in a select

rpc call

2012-03-18 Thread tong123123
as gwt has no java pattern class and so I want to use server validation, at first, my code is if (!validate()_{ }else{ retrieveData(); } the validate() method is only client side validation first, but now I need add rpc server validation test, so I think if the server validation rpc call