Re: Is it able to submit GWT widget in general web form?

2009-10-27 Thread Cage
I create some widget like textbox, suggestbox, and would like to insert these widget into html form instead of formpanel of GWT, actually I can show it in the form with div id=something/div, however I cannot send it to the backend servlet. That is my problem, thank you. c...@hk On Oct 27,

Re: Has anybody ever implemented java.util.UUID in GWT?

2009-10-27 Thread Peter Ondruska
Why not using something that is available, e.g. http://uuid-service.appspot.com On Oct 26, 11:19 pm, Benju b...@fastcastmedia.com wrote: Has anybody here successfully managed to implement java.util.UUID in GWT?  I have seen some examples of a GWT-specific UUID but it would be nice if it was

Re: How to convert the GWT widgets to image

2009-10-27 Thread alex.d
Not with GWT. May be with some apltes, activeX etc. On 26 Okt., 16:34, Arthik Babu arthikb...@gmail.com wrote: Hi I want to convert the GWT widget page to image. Its like previously visited snapshot of the web page. Is it possible to convert to an image. Please help me out. Thanks

Re: java.lang.NoClassDefFoundError:java.net.Socket

2009-10-27 Thread balu
hi sri thank you sri,now my code is working fine. thanks balu. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

handle to window.open opened window.

2009-10-27 Thread Rockster
Hi, question: with javascript you can get a handle to the window that is opened through the window.open (native javascript). In GWT the Window.open returns a void. Is there a specific reason for this ? How to get the handle to the opened window with native GWT ? Regards, Rokesh

Re: detecting user activity on the screen?

2009-10-27 Thread Ed
Nok nok, anybody any idea how to deal with this? On Oct 24, 6:52 pm, Ed post2edb...@hotmail.com wrote: How can I detect that a user isn't performing any activity on the screen? Activity: any click/type events. It's a bit like the HTTP Session timeout, that you destroy the user session when

Re: I can't find the Compile/Browse button in GWT 2.0-ms2

2009-10-27 Thread Fangzx
Anyone? On 10月26日, 上午10时17分, Fangzx fangzhoux...@gmail.com wrote: In GWT version 1.x, I can press the Compile/Browse in hosted mode console to compile, but I can't find the Compile/Browse button in GWT 2.0-ms2. --~--~-~--~~~---~--~~ You received this message

Re: How do I boostrap my Entry Point class with the User service?

2009-10-27 Thread Max Zhu
Only classes listed in this page can be used in GWT Client Side: http://code.google.com/webtoolkit/doc/1.6/RefJreEmulation.html For other classes, we usually stub out them into a common module. But in this case, I don't think we can stub out UserService. You have to make a RPC. On Sun, Oct 25,

Label in FlowPanel

2009-10-27 Thread Halabe
Hi, I am trying to add labels to a flowPanel. The labels are being added each one on a line which does not reflect the real behavior of the flowPanel which is to have them on the same line and when the width is full to go to the second line. I tried substituting the label by a checkbox and a

Re: Label in FlowPanel

2009-10-27 Thread rudolf michael
Hello, Try to add the following CSS property float:left; for your labels/any div inside the FlowPanel for (int i = 0; i 30; i++) { Label a = new Label(); a.setText(test + i); a.getElement().getStyle().setProperty(float, left); flowPanel.add(a); }

Re: UIBinder with a form

2009-10-27 Thread Olivier
It works, Thanks ! @UiHandler(form) public void onSubmitComplete(SubmitCompleteEvent event) { String result = event.getResults(); Window.alert(result); } Oli Thomas Broyer wrote: On 26 oct, 16:57, Olivier Degreef oliv...@digiworks.es wrote:

Re: Label in FlowPanel

2009-10-27 Thread Halabe
Hi Rudolf, I tried your solution but it did not work. I am still get the same! On Oct 27, 11:53 am, rudolf michael roud...@gmail.com wrote: Hello, Try to add the following CSS property float:left; for your labels/any div inside the FlowPanel for (int i = 0; i 30; i++) {          Label a =

Re: Label in FlowPanel

2009-10-27 Thread rudolf michael
Oh i forget to tell you that you have to set a fixed width for the flowpanel. if you don't now the width then you can do it onAttach(), but for now to test it, just set the width of your flowpanel to a radnom number. flowPanel.setWidth(600); On Tue, Oct 27, 2009 at 11:59 AM, Halabe

Re: Label in FlowPanel

2009-10-27 Thread Halabe
Still same issue. On Oct 27, 12:02 pm, rudolf michael roud...@gmail.com wrote: Oh i forget to tell you that you have to set a fixed width for the flowpanel. if you don't now the width then you can do it onAttach(), but for now to test it, just set the width of your flowpanel to a radnom

GWT Eclipse Plugin problem: how can I delay validation when using generated sources ?

2009-10-27 Thread David
Hi, Before I try and create a bug report I just want to see if somebody else has the same issues with GWT Eclipse Plugin (1.1 release downloaded just now 27/10/2009) My GWT project uses Eclipse builders to generate the synchronous and asynchronous interfaces for our RPC classes. We have an

AbstractRemoteServiceServlet and methods synchronized

2009-10-27 Thread Diego Lovison
why have methods that its synchronized? when its a servlet, the container manager this.. I'm see that doPost is synchronized, this means a great loss of time if you test debuging, you will see that, if dont have a method synchronized the code will not work.. but test running, if create

Re: AbstractRemoteServiceServlet and methods synchronized

2009-10-27 Thread Diego Lovison
in gwt 1.7.1 this method is NOT syncronized.. On 27 out, 08:57, Diego Lovison diegolovi...@gmail.com wrote: why have methods that its synchronized? when its a servlet, the container manager this.. I'm see that doPost is synchronized, this means a great loss of time if you test

Re: GWT 2.0M1 java.lang.NoSuchFieldError WITH ECLIPSE PLUGIN

2009-10-27 Thread bond
Any ideas? On 26 Ott, 21:49, bond daniele.re...@gmail.com wrote: Hi, I've a problem when I try to compile my dummy Eclipse web project with GWT Module with Google Plugin 1.1.2. The error is this: [ERROR] Unexpected java.lang.NoSuchFieldError:

Re: FileOutputStream doesn't work in a remoteServiceServlet class?

2009-10-27 Thread Rolando
First, thanks for this hint. Okay, I see the problem, but I don't know how to solve it. Can you tell me what to do or do you know a webside with more informations concerning this problem? Unfortunately I didn't find such a side. Regards, Roland

Re: detecting user activity on the screen?

2009-10-27 Thread Thomas Broyer
On 24 oct, 18:52, Ed post2edb...@hotmail.com wrote: How can I detect that a user isn't performing any activity on the screen? Activity: any click/type events. It's a bit like the HTTP Session timeout, that you destroy the user session when nothing happens. In the same way I want to perform

Re: Label in FlowPanel

2009-10-27 Thread Thomas Broyer
On 27 oct, 10:29, Halabe elie.toumahal...@gmail.com wrote: Hi, I am trying to add labels to a flowPanel. The labels are being added each one on a line which does not reflect the real behavior of the flowPanel which is to have them on the same line and when the width is full to go to the

Re: displaying static content in gwt

2009-10-27 Thread usmanf
Sorry, I am not getting you.. Do You mean including it into the html file directly by editing the .html file? We are using GWT (with ext) only to design the pages. If I include it using GWT, I'll be using setHtml(String) method to add the html. I dont want to hard code the chunks of html code in

Re: Is it able to submit GWT widget in general web form?

2009-10-27 Thread Thomas Broyer
On 27 oct, 07:02, Cage cage...@gmail.com wrote: I create some widget like textbox, suggestbox, and would like to insert these widget into html form instead of formpanel of GWT, actually I can show it in the form with div id=something/div, however I cannot send it to the backend servlet.  

Re: Label in FlowPanel

2009-10-27 Thread Halabe
Hi Thomas, By using an inline label, the labels were displayed on one line however the width of the FlowPanel is fixed. So, instead of getting the labels: text1 text2 text3 text4 text5 text6 text7 I got: text1 text2 text3 text4 text5 text6 text7 Thanks for your help. On Oct 27, 1:47 pm,

Re: Label in FlowPanel

2009-10-27 Thread Davis Ford
Just use a FlexTable and keep track of row / col yourself. It isn't that difficult to do. Regards, Davis On Tue, Oct 27, 2009 at 8:04 AM, Halabe elie.toumahal...@gmail.com wrote: Hi Thomas, By using an inline label, the labels were displayed on one line however the width of the FlowPanel

new page in Gwt

2009-10-27 Thread Jignesh Prajapati
HI all, o not using eclips. and i want to create more than one page. in my Gwt proj. can any one tell me how to do that? using command line? webappcreator can creat only one page. pls help me. -- Drj --~--~-~--~~~---~--~~ You received this message because you

Re: Is there a easy way to remove all the widgets in a cpanel?

2009-10-27 Thread Eric
On Oct 26, 6:32 pm, Ian Bambury ianbamb...@gmail.com wrote: Would you like to expand on your reasoning behind that comment? Ian http://examples.roughian.com 2009/10/26 Eric erjab...@gmail.com If you program creates handlers and attaches them to the panel, simply deleting the panel and

Re: Is there a easy way to remove all the widgets in a cpanel?

2009-10-27 Thread Ian Bambury
Provided you stick to standard GWT and extend existing GWT widgets (or Composite), and use the built-in addXxxHandler methods, then you won't get any memory leaks. Or if you are, then report it as a bug, since GWT aims to ensure that there are no memory leaks if GWT is used normally. Ian

How to minimize browser using GWT ?

2009-10-27 Thread Rinku
How to minimize browser using GWT ? --~--~-~--~~~---~--~~ 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,

Re: GWT Eclipse Plugin problem: how can I delay validation when using generated sources ?

2009-10-27 Thread Miguel Méndez
We perform validations on save and as-you-type. It should rerun the validation after the types are regenerated. As long as the generated folder is on the project's classpath it should work. Could you file a bug for this with a repro case? Thanks, On Tue, Oct 27, 2009 at 6:47 AM, David

Re: How to minimize browser using GWT ?

2009-10-27 Thread Lothar Kimmeringer
Rinku schrieb: How to minimize browser using GWT ? If you replace GWT with HTML/Javascript and know the answer, you can answer that for yourself. I don't know the answer, but doubt that this is possible. Regards, Lothar --~--~-~--~~~---~--~~ You received this

OOPHM and Server Side Page

2009-10-27 Thread Gabriel
Hi, I am working on a web application (using maven project structure) with GWT embedded in several JSPs. Up until now I was running the application server (Tomcat 6) on port 8080, the hosted mode server on port , and the JSPs would contains a code like this for development: script

Re: How to minimize browser using GWT ?

2009-10-27 Thread Salvin
Guys, i seriously believe that this is not possible in any other the modern browsers available: IE,Firefox,Chrome. You could try: window.blur() window.moveTo() window.resize() But it just would minimize. Period. :) all the best. On Oct 27, 7:00 pm, Lothar Kimmeringer j...@kimmeringer.de wrote:

Re: How to use RestyGWT or external module in general in new (eclipse) project?

2009-10-27 Thread hi...@hiramchirino.com
Hi, You can get that jar from: http://download.java.net/maven/2/javax/ws/rs/jsr311-api/1.1/jsr311-api-1.1.jar Regards, Hiram On Oct 26, 5:16 pm, Youngster aecdej...@gmail.com wrote: Hi, I found a module that sounds exactly what i'm looking for but i am kind of a novice and don't know how

error while navigation

2009-10-27 Thread balu
hi every one. i am new to GWT,i designed a login page. If login is success ,i want to go home page else i want to go login page. plz guide me how to do this navigation system in GWT. for this navigation i used following code Model model=new Model(); int x=model.verifyUser(username,

Re: Problem in Debian Squeeze

2009-10-27 Thread Jeff Chimene
Hi: libstdc++5 is only in Debian stable. You'll want to amend your sources.list, update, and install libstdc++5. I would highly recommend a backup before doing this. You'll probably want to use apt-get rather than a high level package manager like aptitude. You might also try going to GWT 2 to

Re: Differences between Hosted and Web mode JUnit testing

2009-10-27 Thread Thomas Broyer
On 26 oct, 18:16, Steve C st...@steveclaflin.com wrote: I have read numerous times that Hosted mode tests bytecode, while Web mode tests in actual JavaScript.   Wanting to delve into this deeper, I came up with the following, in which the JUnit tests succeed in both hosted and web modes.  I

Re: GWT.log listener in hosted mode

2009-10-27 Thread Thomas Broyer
On 25 oct, 18:29, al.hicks al.hi...@gmail.com wrote: Hello, I am looking for some help. I want to be able to listen to the GWT.log messages that are output in the hosted mode console and use them in another application. Currently I am only interested in doing this locally. My thoughts are

Re: GWT.log listener in hosted mode

2009-10-27 Thread al.hicks
thats great thanks for the help. cheers, alan. On Oct 27, 3:45 pm, Thomas Broyer t.bro...@gmail.com wrote: On 25 oct, 18:29, al.hicks al.hi...@gmail.com wrote: Hello, I am looking for some help. I want to be able to listen to the GWT.log messages that are output in the hosted mode

Re: Can anyone here let me know how to deploy GWT application (gwt 1.7) in tomcat or resin or any external server

2009-10-27 Thread Yozons Support on Gmail
Just remember to do the Google-GWT Compile step to create all of the files in the war/module_name folder that's auto-rebuilt for each compile. Those are the ones that are needed when not in hosted/dev mode. And if you're not creating a new war file each time, you may want to consider removing

Re: need to execute commands on windows machine from remote server

2009-10-27 Thread Yozons Support on Gmail
I suspect you'll need a plug-in of some sort as what you suggest would scare the heck out of most people who use a browser, that your server could somehow launch a program on my computer and then monitor it. For the browser, the code is mostly limited to javascript or to a plug-in since it would

Re: OOPHM and Server Side Page

2009-10-27 Thread Thomas Broyer
On 27 oct, 15:10, Gabriel guz...@gmail.com wrote: Hi, I am working on a web application (using maven project structure) with GWT embedded in several JSPs. Up until now I was running the application server (Tomcat 6) on port 8080, the hosted mode server on port , and the JSPs would

Re: GWT Navigation

2009-10-27 Thread Yozons Support on Gmail
You should be able to navigate by setting a new URL on Window.Location.replace(newURL). This should cause the browser to load the age at newURL (what in JSP might be thought of as a sendRedirect, but without having to talk to the server to get it). On Mon, Oct 26, 2009 at 7:30 PM, compuroad

Group Async in one class

2009-10-27 Thread iaio81
Hi all, I was thinking to group the Async call (client-side) in one class in order to make code cleaner. In a multiuser application, could I create a Singleton which return the Async reqested by client? Thanks a lot! --~--~-~--~~~---~--~~ You received this message

DatePicker#setValue(java.util.Date)

2009-10-27 Thread davis
Hi, I'm using com.google.gwt.user.datepicker.client.DatePicker. However, if I set the value such as: datePicker.setValue(date); where date is some java.util.Date object, I was expecting the DatePicker to show the highlighted date, but it does not seem to. It instead just defaults to the

Re: Displaying static content on gwt client

2009-10-27 Thread usmanf
Do I need to svn checkout to from the gwt to get files for the UiBinder stuff? We are using gwt 1.7.1 with ext 2.0.1. unable to find any support inside gwt 1.7.1 On Oct 26, 5:05 pm, Sripathi Krishnan sripathi.krish...@gmail.com wrote: There a couple of approaches you can use, each with its

Re: DatePicker#setValue(java.util.Date)

2009-10-27 Thread Davis Ford
I guess I was missing something, as in: DatePicker#setCurrentMonth(java.util.Date); If you #setValue( ) the UI doesn't auto-magically switch to that month..you have to do it programmatically or I guess force it to with a change handler. Nevermind...nothing to see here... On Tue, Oct 27, 2009

Re: Displaying static content on gwt client

2009-10-27 Thread Sripathi Krishnan
You can use GWT 2.0 Milestone 2 from this link - http://code.google.com/p/google-web-toolkit/downloads/list?can=1q=2.0+Milestone+2 Alternatively, you can also build GWT from source. --Sri 2009/10/27 usmanf linkusma...@yahoo.com Do I need to svn checkout to from the gwt to get files for the

Re: Insert addthis-button in GWT

2009-10-27 Thread Bryan
You add 2 separate elements: First add a ScriptElement containing the external JavaScript Next, add an InlineHTML element to contain the button html. On Oct 26, 6:55 pm, vokke vkub...@gmail.com wrote: Hi Bryan, many thanks for your answer. But I need more help, I'm afraid... I tried the

FileUpload issues.

2009-10-27 Thread David C. Hicks
Hi gang, I'm having a hard time trying to get a FileUpload form working. The basics of setting up the form seem straightforward enough, but I can't seem to get any activity on the back end. To complicate matters, I'm adding this form to a legacy application written using Struts2. So, we

Re: Can't set/get a cookie, lame as that seems

2009-10-27 Thread Open eSignForms
Yes, if I just do a simple cookie, I can set/get just fine: Cookies.setCookie(ce, emailField.getText().trim()); String cookieEmail = Cookies.getCookie(ce); This shows the cookie retrieved just fine, as expected for such a simple thing. But when I try to put the expiry, I can't retrieve it.

Re: Can't set/get a cookie, lame as that seems

2009-10-27 Thread Open eSignForms
Okay, answered my own question. Because my literals for the 'long msecs' calc were just INTs, I was overflowing and resulting in a negative integer. So I added 'L' to the literals to make the arithmetic use longs and it works now. long msecs = 90L*24L*60L*60L*1000L; // 90 days in milliseconds

Re: detecting user activity on the screen?

2009-10-27 Thread ed bras
Thanks Thomas, from the looks of it, I think that this should do the trick --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

GWT 2.0 m2 - Element id vs. Module name

2009-10-27 Thread todd.sei...@gmail.com
Hopefully this might help someone. Previously I had a div with the same id value as my GWT module. After upgrading to GWT 2.0 m2 from a 1.6 or 1.7-ish build from trunk the module would not load. The module loading in module.nocache.js has changed. Either change your element id or change your

Re: Group Async in one class

2009-10-27 Thread thebuz...@gmail.com
When I call to the server I use one main class with different functions. Each of the function will do a different class declaration. This way I don't have to make so many web portlet linking things. On Oct 27, 9:19 am, iaio81 stefano.taurie...@gmail.com wrote: Hi all, I was thinking to

why onInjectionDone has to be called from a separate script in the selection script?

2009-10-27 Thread Raziel
IFrameTemplate.js, the javascript template containing the logic to bootstrap the GWT application, writes a script tag calling the onInjectionDone function at the end of the execution of the selection script. Given that script tags always block evaluation of the page until the script is fetched

Re: why onInjectionDone has to be called from a separate script in the selection script?

2009-10-27 Thread Thomas Broyer
On 27 oct, 23:44, Raziel raziel...@gmail.com wrote: IFrameTemplate.js, the javascript template containing the logic to bootstrap the GWT application, writes a script tag calling the onInjectionDone function at the end of the execution of the selection script. Given that script tags always

Re: GWT 2.0 m2 - Element id vs. Module name

2009-10-27 Thread Thomas Broyer
On 27 oct, 21:42, todd.sei...@gmail.com todd.sei...@gmail.com wrote: Hopefully this might help someone. Previously I had a div with the same id value as my GWT module. After upgrading to GWT 2.0 m2 from a 1.6 or 1.7-ish build from trunk the module would not load. The module loading in

Re: EasyMock for GWT + MVP ?

2009-10-27 Thread lowecg2004
Cool - glad to hear you're up and running. On Oct 27, 1:32 am, fker...@gmail.com fker...@gmail.com wrote: On Oct 25, 5:26 pm, lowecg2004 chris.lowe...@gmail.com wrote: As Arthur said, calling GWTMockUtilities.disarm() will prevent that error (that was in part 2 of my article :) As for

Re: GWT Navigation

2009-10-27 Thread mdwarne
Hi, I have an application with one entry point, and many 'Screens' . In your Entry point loadModule(), try creating a DeckPanel, and add it to the root. Then in your entry point , create a few panels with widgets on them. Add these panels to the DeckPanel. At the end of your loadModule method

Re: Insert addthis-button in GWT

2009-10-27 Thread vokke
Hi Bryan, that was the important clue. It works with InlineHTML. Thanks a lot for helping me out! Cheers, Vokke On 27 Okt., 18:19, Bryan bryan.verg...@gmail.com wrote: You add 2 separate elements: First add a ScriptElement containing the external JavaScript Next, add an InlineHTML element

Re: GWT 2.0 m2 - Element id vs. Module name

2009-10-27 Thread todd.sei...@gmail.com
Thank you for pointing out that it had been reported before. I had checked to see if it had been but I found nothing. I guess my search parameters where not good enough to return any results. Yes, it has worked with previous versions. The project I am working on has been live for more than a

Re: Can anyone here let me know how to deploy GWT application (gwt 1.7) in tomcat or resin or any external server

2009-10-27 Thread sathya
This is very easy process to deploy GWT project on tomcat.Please follow below steps. 1. Install tomcat cat server with tomcat manager. 2. create zip file with all contents inside war file.(imp note:: do not zip war file, instead zip all contents of war file. When you open zip file, you should be

Re: GWT Navigation

2009-10-27 Thread compuroad
Hi Mike, It looks a pretty good UI design. Would you mind to paste here some of the code you mentioned? Thanks, Wilson On Oct 27, 7:47 pm, mdwarne mike.wa...@gmail.com wrote: Hi, I have an application with one entry point, and many 'Screens' . In your Entry point loadModule(), try

Support for Streaming Video

2009-10-27 Thread compuroad
Do GWT and AppEngine support streaming video? --~--~-~--~~~---~--~~ 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

Re: GWT 2.0M1 java.lang.NoSuchFieldError WITH ECLIPSE PLUGIN

2009-10-27 Thread Harmeet Bedi
Your JdtCompiler is likely in 2 jars. In Google and something else. Try to resolve JdtCompiler, see what it resolves to. Also if you send your .classpath it would help diagnose. Harmeet - Original Message - From: bond daniele.re...@gmail.com To: Google Web Toolkit

Problem with GWT DialogBox

2009-10-27 Thread Dinis
Hi, I'm having a problem with dialog boxes not drawing correctly on Chrome. They draw correctly on both Hosted Mode and Firefox, but on Chrome the right side of the dialog box doesn't appear (like if it had been cut out). I'm using Windows, App Engine 1.2.6 and GWT 1.7.1. The code below is the

Are there any books on the GWT?

2009-10-27 Thread Tim
Has anybody written any actual printed books on the GWT? --~--~-~--~~~---~--~~ 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

Re: smack api integration

2009-10-27 Thread Pondmouse
I've been trying to figure this out for days. I don't think it's possible. The only JARs I've seen integrated into GWT come with a pre- configured .gwt.xml files But saying that I haven't really found anything that says you can't use any external API, except for a post on

Extend or withdraw the set of compileable Java classes

2009-10-27 Thread Sean
Hi together, I'm new to GWT and I'm looking for a way to use the GWTCompiler for another set of Java classes. Basically I would like to write my own set of classes for the compiler and define what code the compiler is generating out of them. Also I would like to add an compiler argument so that

Re: Is it possible to create custom widget?

2009-10-27 Thread Felipe
... i don't understand , but: you should test your service with jUnit , then . try that: seee: parametricas = ServiceLocator.getFacadeParametricas(); public class ComunasSelector extends Composite { private SuggestBox listadoSuggestComunas; private ComunaSuggestOracle

minimize browser window.

2009-10-27 Thread ganesh.shirsat
hi friends, is it any way to minimize the browser window? please help me out. regards, Ganesh Shirsat --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

Re: How to minimize browser using GWT ?

2009-10-27 Thread ganesh.shirsat
i also have this issue. please anyone solve. Thanks, On Oct 27, 6:50 pm, Rinku ashishkushwaha1...@gmail.com wrote: How to minimize browser using GWT ? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web

Re: How to minimize browser using GWT ?

2009-10-27 Thread ganesh.shirsat
i tried this but javascript not provide any solution for minimize the window. On Oct 27, 7:00 pm, Lothar Kimmeringer j...@kimmeringer.de wrote: Rinku schrieb: How to minimize browser using GWT ? If you replace GWT with HTML/Javascript and know the answer, you can answer that for yourself.

Re: Problem using PagingScrollTable

2009-10-27 Thread Felipe
Hi, the code: In TableModel you make data acces (local o remote): in TableDefinition, decide how to display public class LineasConstruccionTableModel extends MutableTableModelLineaConstruccionUnidadVendibleModel { private int idDeclaracion; private int correlativo; private

Custom Composite widget inside horizontal split panel

2009-10-27 Thread renju
Hello friends, I have a horizontal split panel which has a tree on the left side and a custom widget on the right side. When the horizontal split panel is re-sized, my tree is resizing. But my custom widget is not resizing itself. Also I cannot override the onSplitterResize() inside

Debugging in Eclipse doesn't work

2009-10-27 Thread Brian Park
Hi, I'm new to GWT and following the StockWatcher tutorial from GWT website. I'm on the debugging section, so as the tutorial told me to do, I launched the application in debug mode in Eclipse. However, the perspective didn't change to Debug mode. Also, it didn't stop at the breakpoints that

Re: Debugging in Eclipse doesn't work

2009-10-27 Thread Yozons Support on Gmail
Not sure why it doesn't switch to debug mode, but I learned recently that if you are using JDK 6 that you need to get the very latest 6.0.16 because the earlier ones had bugs in the breakpoint logic (I was on 6.0.14 and it wouldn't work, so I don't know how much earlier you could go and have it

Re: smack api integration

2009-10-27 Thread Sripathi Krishnan
I don't know much about smack or XMPP, but here is what I can tell you - Your GWT application has two distinct parts - client side code and server side code. Client side code ultimately gets converted to javascript, and hence there are restrictions on what jars you can use. Jars that can be used

Re: How to minimize browser using GWT ?

2009-10-27 Thread Rinku
Thanks for your replies. First I am explaining my requirement :- I created my own minimize and maximize button in my Application. When I click on minimize button, my application should minimize like our application (If we minimize any application in our PC, that application is displaying in our

Re: Is it possible to create custom widget?

2009-10-27 Thread Cage
Wao thanks a lot, let me study your code first. On Oct 27, 8:08 pm, Felipe felipe.andres.p...@gmail.com wrote: ... i don't understand , but: you should test your service with jUnit , then . try that: seee: parametricas = ServiceLocator.getFacadeParametricas(); public class

Re: Are there any books on the GWT?

2009-10-27 Thread David C. Hicks
Yes, there are a number of pretty good books on GWT. The first I am aware of was GWT In Action. It's slightly dated, but still a very good reference and tutorial. Do a search on Amazon. You can't miss them. Tim wrote: Has anybody written any actual printed books on the GWT?

Re: java.lang.NoClassDefFoundError:java.net.Socket

2009-10-27 Thread balu
hi all i want to navigate from one html page to another another html page when my login is success and failure. plz send some useful links. thanks balu. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

select tab

2009-10-27 Thread navS
Hi team, need some clarification in TabPanel, Statement: Suppose i have one tabPanel, with three tabs say tab1, tab2, tab3. In tab1, have some fields, and a save button. when i click save a service is called to save data. on success of the service, tab2 should be selected. Problem: tab2 is

[gwt-contrib] Re: Allows multiple sources on a ui:style

2009-10-27 Thread rjrjr
Added Bob's ResourceGeneratorUtil fix (reviewed in http://gwt-code-reviews.appspot.com/77819). Committed to trunk at 6479, merged to releases/2.0 at 6480. http://gwt-code-reviews.appspot.com/77819 --~--~-~--~~~---~--~~

[gwt-contrib] [google-web-toolkit] r6481 committed - Just remembered that MenuItemParser has support for the old phantom...

2009-10-27 Thread codesite-noreply
Revision: 6481 Author: rj...@google.com Date: Tue Oct 27 00:48:50 2009 Log: Just remembered that MenuItemParser has support for the old phantom MenuItemHTML child, which I killed off like a year ago. Getting rid of that support drastically simplifies the class. It also revealed a bug in

[gwt-contrib] [google-web-toolkit] r6482 committed - tr...@6481 was merged into this branch...

2009-10-27 Thread codesite-noreply
Revision: 6482 Author: rj...@google.com Date: Tue Oct 27 01:15:12 2009 Log: tr...@6481 was merged into this branch Get rid of deprecated MenuItemHTML support svn merge --ignore-ancestry -c 6481 https://google-web-toolkit.googlecode.com/svn/trunk .

[gwt-contrib] Re: Fix parser order, ditch MenuItemHTML

2009-10-27 Thread rjrjr
Committed to tr...@6481, merged to releaeses/2.0 at 6482 http://gwt-code-reviews.appspot.com/77821 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] Comment on CssResource in google-web-toolkit

2009-10-27 Thread codesite-noreply
Comment by ladislav.gazo: What is the situation with custom styling of widgets that are using obfuscation, e.g.: I have a scroll table which I want to give custom colours and fonts but it has all styles obfuscated. Before I was able to grab style name, create custom CSS and override it.

[gwt-contrib] Re: Fix for issue 3374 (URL.encodeComponent limited to query-string uses)

2009-10-27 Thread t . broyer
For those following progress on this, or finding this issue later on; and to not leave a comment unanswered: http://gwt-code-reviews.appspot.com/87806/diff/1/2 File user/src/com/google/gwt/http/client/URL.java (right): http://gwt-code-reviews.appspot.com/87806/diff/1/2#newcode170 Line 170: *

[gwt-contrib] [google-web-toolkit] r6483 committed - Updated the 'hosted' string appearing in ant.xml files for samples to ...

2009-10-27 Thread codesite-noreply
Revision: 6483 Author: amitman...@google.com Date: Tue Oct 27 10:00:15 2009 Log: Updated the 'hosted' string appearing in ant.xml files for samples to 'devMode' Patch by: amitmanjhi http://code.google.com/p/google-web-toolkit/source/detail?r=6483 Modified:

[gwt-contrib] Re: Fix for issue 4067 (make UiBinderGenerator stable)

2009-10-27 Thread rjrjr
I'm obliged for the patch, Tom, but the fix for the actual issue turns out to be: - private static int domId = 0; + private int domId = 0; Also, I'm pretty sure the WidgetPlaceholderInterpreter change will result in duplicate field names. WPI isn't a singleton. I don't remember what you're

[gwt-contrib] RR : GWT 2.0 : Speed up UiBinder+CssResource generator

2009-10-27 Thread bobv
Reviewers: Ray Ryan, Message: Review requested. Looking at the Mail sample with JProfiler, GenerateCssAst is where the bulk of the time is spent in CssResourceGenerator. Description: When ui:style elements are used, GenerateCssAst.exec() gets called with the same arguments twice. Once when

[gwt-contrib] mmen...@google.com

2009-10-27 Thread rjrjr
Reviewers: , Message: Trivial fix for issue 4067, UiBinderGenerator is not stable. Miguel would have fixed this earlier, but thought that the values from domId were being used directly as, well, DOM ids. Actually they name Java fields which will hold dom ids at runtime, generated by calls to

[gwt-contrib] Re: mmen...@google.com

2009-10-27 Thread mmendez
LGTM We used to be able to build typeoracles dynamically. If that is still possible, you should add a unit test that generates twice and compares the delta. http://gwt-code-reviews.appspot.com/86806 --~--~-~--~~~---~--~~

[gwt-contrib] Re: RR : GWT 2.0 : Speed up UiBinder+CssResource generator

2009-10-27 Thread rjrjr
Nice fix. If GenerateCssAst were instance based, you could inject a mock or instrumented parser and add a unit test that the cache is actually working. That actually wouldn't be a very big change, and wouldn't require you to lose the nasty static methods...

[gwt-contrib] Re: Fix for issue 4067 (make UiBinderGenerator stable)

2009-10-27 Thread t . broyer
On 2009/10/27 18:26:49, Ray Ryan wrote: I'm obliged for the patch, Tom, but the fix for the actual issue turns out to be: - private static int domId = 0; + private int domId = 0; Also, I'm pretty sure the WidgetPlaceholderInterpreter change will result in duplicate field names. WPI

[gwt-contrib] Re: mmen...@google.com

2009-10-27 Thread Ray Ryan
I looked into the testing situation. It's more doable than I thought, but will required refactoring of UiBinderWriter et al that I just don't have time to do this week. I've noted the details for later and will submit this as is. Because I'm a hypocrite. On Tue, Oct 27, 2009 at 12:08 PM,

[gwt-contrib] Re: mmen...@google.com

2009-10-27 Thread rjrjr
Reiterating for posterity: I looked into the testing situation. It's more doable than I thought, but will required refactoring of UiBinderWriter et al that I just don't have time to do this week. I've noted the details for later and will submit this as is. Because I'm a hypocrite.

[gwt-contrib] [google-web-toolkit] r6484 committed - Removing unused old platform dirs from checkstyle configs.

2009-10-27 Thread codesite-noreply
Revision: 6484 Author: sco...@google.com Date: Tue Oct 27 14:03:49 2009 Log: Removing unused old platform dirs from checkstyle configs. http://code.google.com/p/google-web-toolkit/source/detail?r=6484 Modified: /trunk/eclipse/dev/.checkstyle /trunk/eclipse/dev/compiler/.checkstyle

  1   2   >