Re: Updating the screen during a clickhandler event

2011-11-17 Thread Thomas Klöber
Am 18.11.2011 04:07, schrieb Neil Williams: I have an game which is run on a standard board using click handler events. I want to be able to update the screen during the clickhandler event to show various changes. At present the screen updates once the click handler event finishes. Is there a

Re: Multipage gwt app

2011-11-17 Thread -sowdri-
You can have as many modules as you want for the same client/server code. And you can reuse the same services across modules. Just understand that you create multiple module definitions (.gwt.xml file) and a corresponding host pages for each of them. And if you want to pass data/info across m

Re: Updating the screen during a clickhandler event

2011-11-17 Thread suresh babu
You can do this using MVP based on the button you can fire the event, in event bind you can change the token so that current view is refreshed. On Fri, Nov 18, 2011 at 8:37 AM, Neil Williams wrote: > I have an game which is run on a standard board using click handler > events. I want to be able

Re: DataGrid, Activity/Place don't work on IE7

2011-11-17 Thread Juan Pablo Gardella
Hi folks, I reduce the sample and upload a video to see the error: http://www.youtube.com/watch?v=mDYqlB3h6-4. In first browser (FF8) you see that the datagrid shows, then on IE7 no. But, when I refresh the datagrid is showing. Is crazy. I u

Re: DataGrid, Activity/Place don't work on IE7

2011-11-17 Thread Juan Pablo Gardella
Hi, I replace the view from: to: And the label is showing in IE7, so I assume that DockLayoutPanel is not the problem. So, Why datagrid is don't showing in IE7 and yes in other browser (inclusive IE9)?. I will simplify the sample to reproduce the error. I try setting height and

Updating the screen during a clickhandler event

2011-11-17 Thread Neil Williams
I have an game which is run on a standard board using click handler events. I want to be able to update the screen during the clickhandler event to show various changes. At present the screen updates once the click handler event finishes. Is there a method that works similar to the Swing method

Animate group of Views together

2011-11-17 Thread Victor Lujan
Hi everyone, This is an open question, what options exist in GWT to make more than one view move (slide) together as a group? is there anything that could help to achieve this in GWT? Thank you! -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" g

Server communication that is compatible with Android

2011-11-17 Thread Bantak
Hi, I want to develop a application with Android and GWT as frontends and a application server as backend. My question is what is the easiest way to communicate with the server and I want to reuse some of the code for Android (especially the model). I probably will use Jetty as a server and I spe

Re: Highcharts - updating chart with data

2011-11-17 Thread Darren Salomons
Hi Rob, I see your demo on the site with highcharts but I don't see it in the code on googlecode. Is there a different codebase that you are working on for the highcharts integration? Thanks! Darren -- You received this message because you are subscribed to the Google Groups "Google Web To

Re: Need for the user agent

2011-11-17 Thread Thomas Broyer
Have a look at the MobileWebApp sample from the GWT SDK: it uses deferred binding to adapt to 3 form-factors: desktops, tablets and phones. -- 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://

Re: DataGrid, Activity/Place don't work on IE7

2011-11-17 Thread Thomas Broyer
As a quick and easy test, try setting an explicit height *and* width. If it indeed is the issue, then you'll have to either live with it, or put your DockLayoutPanel within a ProvidesResize widget (because DockLayoutPanel RequiresResize), possibly a ResizeLayoutPanel. -- You received this mess

Re: GWT HTTP RequestBuilder

2011-11-17 Thread karun
Hi Thomas, CORS has solved SOP problem, i am displaying the http response JSP by creating a html using response.getText() method and adding that html to PopupPanel. The problem is the elements in html page are misaligned/not formed properly, when compared to the same JSP opened directly in th

Re: Multipage gwt app

2011-11-17 Thread Deepak Singh
Some suggestion pls.. On Thu, Nov 17, 2011 at 10:02 PM, Deepak Singh wrote: > Hi All, > > With new GWT 2.4 eclipse plugin, > > I created a new project. It comes with the project architecture as usual, > > client > GreetingService > GreetingServiceAsync > Project.java > Project.g

hoe to make GWT TabPanel draggable and resizable

2011-11-17 Thread junaid
Hi i have a TabPanel in my GWT project, i want to make it draggable and resizable is it possible with GWT ? Thanks Junaid -- 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@googlegroup

Re: Need for the user agent

2011-11-17 Thread Juan Pablo Gardella
Check here http://stackoverflow.com/questions/2759321/how-to-find-out-about-the-user-agent-in-gwt 2011/11/17 skippy > I have seen many posting for the need for the user agent string. Most > just reply with what for. You should not need to. > > My need is I need to modify my appliation to adjus

Need for the user agent

2011-11-17 Thread skippy
I have seen many posting for the need for the user agent string. Most just reply with what for. You should not need to. My need is I need to modify my appliation to adjust based on the ipad. So, if one of you smart GWT guys could help, that would be great! Thanks much! -a -- You received thi

Re: DataGrid, Activity/Place don't work on IE7

2011-11-17 Thread Juan Pablo Gardella
I upload the sample to bitbucket to browse the sources: https://bitbucket.org/gardellajuanpablo/bugie7gwt/src Thanks for your time. 2011/11/17 Juan Pablo Gardella > Thanks Thomas for your tips! But using height="450px" don't resolve the > error. It continues. I will upload to youtube a video to

Re: DataGrid, Activity/Place don't work on IE7

2011-11-17 Thread Juan Pablo Gardella
Thanks Thomas for your tips! But using height="450px" don't resolve the error. It continues. I will upload to youtube a video to show the error. I don't know if is my code, becouse it runs on other browser. I think is a bug, becouse I test all ways but don't find the cause. Perhaps is DockLayoutPa

Re: DataGrid, Activity/Place don't work on IE7

2011-11-17 Thread Juan Pablo Gardella
Hi David, Thanks for your time. Yes the activity was called. The sample works on IE9, Firefox and Chrome, but not in IE7. Best regards, Juan 2011/11/17 David > Is it an Activy/Place , a uib , or a datagrid problem? > > Try debugging to see if presenter 'star't method is invoked . Also > pu

Re: DataGrid, Activity/Place don't work on IE7

2011-11-17 Thread Thomas Broyer
Looks to me like it could be an issue with your DockLayoutPanel not having a fixed size and not put within a ProvidesResize (and BTW, use height="450px" on your rather than using CSS; as a rule of thumb, with GWT, do not use CSS for sizing, and more generally for layout; unless you're doing yo

Re: Defining widgets as static

2011-11-17 Thread Kevin Jordan
Anything static in your client-side code is static only for that user's instance of it since it is running as javascript in their browser. Only static things on the server would affect per user/ session. On Nov 17, 8:30 am, Ahmet Dakoglu wrote: > Hi All, > > Although i use smartgwt , i do not us

Re: DataGrid, Activity/Place don't work on IE7

2011-11-17 Thread David
Is it an Activy/Place , a uib , or a datagrid problem? Try debugging to see if presenter 'star't method is invoked . Also put in title or some other indication that the uib template is being rendered. It also looks like you'll be adding an additional column on each visit David On Nov 16, 8

Multipage gwt app

2011-11-17 Thread Deepak Singh
Hi All, With new GWT 2.4 eclipse plugin, I created a new project. It comes with the project architecture as usual, client GreetingService GreetingServiceAsync Project.java Project.gwt.xml Server GreetingServiceImpl war project.html / css Now right click on project, c

Re: Developer Plugin documentation?

2011-11-17 Thread Abhyudha Baddi
i didn't get u On Thu, Nov 17, 2011 at 9:43 PM, Richard Allen wrote: > Is there any documentation for the GWT Developer Plugin, such as what > browsers it supports? Sadly, the documentation for GWT appears to lack > information on the Developer Plugin. You have to dig around the site to > find th

Re: RequestFactory and server side validation

2011-11-17 Thread Thomas Broyer
See http://code.google.com/p/google-web-toolkit/issues/detail?id=6008 (and thus http://code.google.com/p/google-web-toolkit/issues/detail?id=5794 ) -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit

GWT Servlet 3 roadmap

2011-11-17 Thread dhoffer
We are looking at tool stacks for a new web app that will make heavy use of server push (Comet), what's the plans looking forward to GWT supporting Servlet 3 async spec? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group

Developer Plugin documentation?

2011-11-17 Thread Richard Allen
Is there any documentation for the GWT Developer Plugin, such as what browsers it supports? Sadly, the documentation for GWT appears to lack information on the Developer Plugin. You have to dig around the site to find the URL: http://gwt.google.com/missing-plugin. Seems appropriate to have a se

Dom Builder API

2011-11-17 Thread legion
>From some reason I was under impresion that DOM builder API will be included in GWT 2.4. I downloaded the release and is not here. is this planned for the next release? Are there any examples in the trunc which shows how to use this with cell-widgets? -- You received this message because yo

How to check on server-side that Chrome Frame is installed, but BHO is disabled?

2011-11-17 Thread Alexey Belov
The initial discussion was started here: http://groups.google.com/group/google-web-toolkit/browse_thread/thread/33b4928e90be715a Is there any news on this topic? I have also faced this serious problem during the development of my web site with ASP.NET. I have a lot of checks for IE and its version

Re: loading a URL

2011-11-17 Thread Paul Robinson
You can't access a random URL from javascript, so it will have to be your server that downloads the content of the remote URL. If you're using a java server, and you're using RPC, then you could have the client send an RPC request to the server that will make the server download the yahoo file

Re: code splitting in gwt

2011-11-17 Thread Thomas Klöber
Am 17.11.2011 11:17, schrieb HARISH SAHARAN: dear sir, can u plz tell me about code splitting means why to use it ? and how to use it ?? plz read this: http://code.google.com/intl/de-DE/webtoolkit/doc/latest/DevGuideCodeSplitting.html -- Intelligent Communication Software Vertr

Where i may to download update site archive for GWT Designer?

2011-11-17 Thread Selector
I don't find the link. -- 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

loading a URL

2011-11-17 Thread webbed
Hi, I've just spent the past two hours trying to figure out how to do this, but am confused and bamboozled with all the search results. I'm trying to create a web app using GWT. I want it to go to a URL. e.g. http://ichart.finance.yahoo.com/table.csv?s=IBM&d=9&e=11&f=2011&g=d&a=0&b=2&c=1962&ignore

code splitting in gwt

2011-11-17 Thread HARISH SAHARAN
dear sir, can u plz tell me about code splitting means why to use it ? and how to use it ?? -- 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 unsubscr

Re: How to connect a non-gwt xmlrpc-client to a xmlrpc-server created by GWT.

2011-11-17 Thread jhulford
If your servlet is extending the RemoteServiceServlet from the GWT code (as it appears you're doing based on the error), then the only data format that can be parsed from a client request is the GWT-RPC one. If you want to do xml-rpc, you'll need to write your own backend to support that, or find

How can I figure out if my servlet is getting initialized in my GWTTestCase?

2011-11-17 Thread laredotornado
Hi, I'm using GWT 2.4. I'm trying to write a GWTTestCase, but getting a 404 when trying to contact a servlet. How do I figure out if the servlet is initializing properly or if there are errors? I have declared this in my module file ... In my test case, I try and set it up like so ...

Defining widgets as static

2011-11-17 Thread Ahmet Dakoglu
Hi All, Although i use smartgwt , i do not use datasource system of Sgwt, only use it for widgets with datas comes from rpc. My question is , i have make complex view design and i want to create widgets into seperate classes.(BTW i don't and can't use Activities & Places or MVP etc). If i define

RequestFactory and server side validation

2011-11-17 Thread Artem Nikulchenko
I'm trying to use RequestFactory in my application for entity exchange between client and server. (Which I think it was designed for.) But I have one workflow, that it kind of standard, but I can't solve it in any normal way (with out overriding part of RF logic). The workflow is follow: 1. User p

reflection-like for 2.3 or 2.4

2011-11-17 Thread András Csányi
Dear All, I'm looking for a gwt library which provides me reflection-like services. Basically there is an object and I would like to know the properties of the object and get them. In the last 1,5 days I found many but some of them created for old version of gwt and/or doesn't have maven repositor

Re: No source code is available

2011-11-17 Thread learning coding
hi Thanks for your kind attention on my query. But the link u send says that external jar files are on client side. and in my application external jar files are on server side. I am practicing on RPC application Do i still need to add a source for it. On Nov 17, 2:31 pm, Juan Pablo Garde

Re: Using beanutils in my maven project

2011-11-17 Thread András Csányi
On 17 November 2011 14:08, Juan Pablo Gardella wrote: > You are adding other libs, and for example commons-logging is not possible > use in GWT, becouse it use reflection. Check > http://code.google.com/intl/es/webtoolkit/doc/latest/RefJreEmulation.html > > At writing this mail, I remember commons

Re: parameter passing in gwt

2011-11-17 Thread Thomas Broyer
On Thursday, November 17, 2011 5:03:14 AM UTC+1, Bhavesh wrote: > > Hi, > I am using activity and places in my application and i need to pass > parameter from one place to another. So please provide me the solution > for the same. > > I am passing parameter using method and i am successfully

Re: RequestFactory : Get deltas from server's changes?

2011-11-17 Thread Thomas Broyer
Basically, RF keeps 2 copies of your proxies: the immutable one you received from the server, and the mutable one created by RequestContext#edit(). Both proxies have a reference on each other (the immutable one using its reference to the mutable proxy as a "lock" to prevent creating two mutable

Re: No source code is available

2011-11-17 Thread Juan Pablo Gardella
See http://groups.google.com/group/google-web-toolkit/browse_thread/thread/534a3dd248529f66 2011/11/17 learning coding > Hi.. > > I am usning some external jar files on the server side of web > application. > when i run the application it gives an error for all the external jar > files which i

Re: compiler.emulatedStack.recordLineNumbers

2011-11-17 Thread Paul Robinson
You need set-configuration-property. This is what it should look like: Paul On 17/11/11 13:14, Dave wrote: I'm attempting to record line numbers in my GWT client code. I see that the property compiler.emulatedStack.recordLineNumbers can be used to accommodate this. Thus in my gwt.xml cla

No source code is available

2011-11-17 Thread learning coding
Hi.. I am usning some external jar files on the server side of web application. when i run the application it gives an error for all the external jar files which i used on the server side. [ERROR]No source code is available for type ... did you forget to inherit a required module? how to solve

compiler.emulatedStack.recordLineNumbers

2011-11-17 Thread Dave
I'm attempting to record line numbers in my GWT client code. I see that the property compiler.emulatedStack.recordLineNumbers can be used to accommodate this. Thus in my gwt.xml class I have the following ... ... When compiling I get the error [ERROR] The specified property 'compiler

Re: Using beanutils in my maven project

2011-11-17 Thread Juan Pablo Gardella
You are adding other libs, and for example commons-logging is not possible use in GWT, becouse it use reflection. Check http://code.google.com/intl/es/webtoolkit/doc/latest/RefJreEmulation.html At writing this mail, I remember commons-beanutils use reflection (I think) so you can't compile to GWT.

Re: GWT 2.5, when?

2011-11-17 Thread Thomas Broyer
On Thursday, November 17, 2011 1:08:38 AM UTC+1, Mariano Ortega wrote: > > > 1. Is there any place where the roadmap can be seen? > No. And AFAIK, there's no roadmap (at least no public one; there's never been). > 2. If not (1), then does anyone know where I can find what the 2.5 release >

Re: Confusion about excluding/including source files for a GWTTestCase

2011-11-17 Thread Thomas Broyer
The mentioned classes and interfaces are not part of the emulated runtime < http://code.google.com/webtoolkit/doc/latest/DevGuideCodingBasicsCompatibility.html#runtime> so either you should rewrite your test without them, or you're erroneously using a GWTTestCase where what you want is a simple

Re: What is the impact of *.cache.html size

2011-11-17 Thread Thomas Broyer
A "good citizen" library should support many languages but not force you to use them (i.e. not ). GWT has supports for many languages re. number and date formatting, and yet by default you only have the "default" locale. I'd suggest you file a bug on the gwt-cal project about their use of exten

Re: Road Map for GWT?

2011-11-17 Thread Thomas Broyer
Rajeev suggested a few days ago that there might be a roadmap in the future: http://code.google.com/p/google-web-toolkit/issues/detail?id=6793 (he doesn't talk about shipping dates though) -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.

Re: Following StockWatcher: An error occurred while attempting to contact the server. Please check your network connection and try again.

2011-11-17 Thread Jens
Are you using JDK 7? If so, go back to JDK 6. -- J. -- 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/-/lW6-QFNHOr8J. To post to this group, send e

Re: Following StockWatcher: An error occurred while attempting to contact the server. Please check your network connection and try again.

2011-11-17 Thread tirengarfio
No idea? On Nov 15, 6:42 pm, tirengarfio wrote: > Hi, > > I'm following the steps of StockWatcher app. After run the app in > Eclipse I get an URL (http://127.0.0.1:/StockWatcher.html? > gwt.codesvr=127.0.0.1:9997) that shows this: > > http://code.google.com/webtoolkit/doc/1.6/tutorial/image

Re: IFrame to https url not working in Firefox

2011-11-17 Thread gerry
Hi Paul, Thanks for the reply. Sorry, I was misleading in my description of the problem. Yes, the certificate is signed by us, and it generates a browser warning. But the application does not work at all when called from inside an iframe. On 17 Νοέ, 12:18, Paul Robinson wrote: > Why not sign the

Re: Updating a single row (or a cell) in a DataGrid with a ListProvider

2011-11-17 Thread Maero Polo
Hello, Thanks for your advice : calling "dataProvider.getList().set" works and the whole table is not fully redrawn. I have also found an other solution by modifying my object to be displayed and then by calling cellTable.updateRow(index). Thanks again. On 16 nov, 17:15, Thomas Broyer wrote: >

Re: IFrame to https url not working in Firefox

2011-11-17 Thread Paul Robinson
Why not sign the certificate yourself? The result won't be trusted, and will generate a browser warning, but it will more faithfully represent what happens in production. Google for something like "self signed ssl certificate" to work out how to do it. HTH Paul On 17/11/11 10:08, gerry wrote

IFrame to https url not working in Firefox

2011-11-17 Thread gerry
Hi all, I have an application that is secured with an unsigned ssl certificate. I have a second application, which is a TabPanel, and on one tab I need to include the first application, as an iFrame, using a Frame object. In development mode, in chrome, it returns a 501 (net::ERR_INSECURE_RESPONSE

RequestFactory : Get deltas from server's changes?

2011-11-17 Thread JB
Hi, from what I read, I understood that RF allows to easily fire changes from client with only "deltas" in the payload. What about the reverse? I'm trying to implement a service that would automatically fire changes coming from server side to the client. Thanks for your help -- You receive

Re: Using beanutils in my maven project

2011-11-17 Thread András Csányi
On 16 November 2011 19:18, Juan Pablo Gardella wrote: > Here you can see a sample (browse the source): > gwt-sample (Spring, JPA2) > In this site you can check how configure the module. > And some answers: >>I don't understand why should I do the last two steps. My project has >>a dependency to ap