Re: Using beanutils in my maven project

2011-11-17 Thread András Csányi
On 16 November 2011 19:18, Juan Pablo Gardella gardellajuanpa...@gmail.com 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

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 received

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

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:

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

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 ukcue...@gmail.com wrote:

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 tirengar...@gmail.com 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:

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

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: 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 extend-property name=locale .../). 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

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

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 ... set-property name=compiler.stackMode value=emulated / set-property

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

Re: compiler.emulatedStack.recordLineNumbers

2011-11-17 Thread Paul Robinson
You need set-configuration-property. This is what it should look like: inherits name=com.google.gwt.core.EmulateJsStack/ set-property name=compiler.stackMode value=emulated/ set-configuration-property name=compiler.emulatedStack.recordLineNumbers value=true/ set-configuration-property

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 learning.codin...@gmail.com 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

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

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

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

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

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 ... servlet path=/xmlhelperservice

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

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

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=IBMd=9e=11f=2011g=da=0b=2c=1962ignore=.csv

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.

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

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

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

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

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

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

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 richard.l.al...@gmail.comwrote: 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

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,

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,

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 ahmetdako...@gmail.com wrote: Hi All, Although i use

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 g:DockLayoutPanel rather than using CSS; as a rule of thumb, with GWT, do not use CSS for sizing, and more generally for layout; unless

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 levy...@gmail.com Is it an Activy/Place , a uib , or a datagrid problem? Try debugging to see if presenter 'star't method is

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

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

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 al.leh...@fisglobal.com 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

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

Re: Multipage gwt app

2011-11-17 Thread Deepak Singh
Some suggestion pls.. On Thu, Nov 17, 2011 at 10:02 PM, Deepak Singh deepaksingh...@gmail.comwrote: 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

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

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

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

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

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

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

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

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

2011-11-17 Thread Juan Pablo Gardella
Hi, I replace the view from: g:VerticalPanel addStyleNames='mainPanel' g:DockLayoutPanel unit=PX addStyleNames={style.grid} g:center c:DataGrid ui:field=resultTable / /g:center /g:DockLayoutPanel /g:VerticalPanel to: g:VerticalPanel addStyleNames='mainPanel' g:DockLayoutPanel unit=PX

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

2011-11-17 Thread Juan Pablo Gardella
Hi folks, I reduce the sample https://bitbucket.org/gardellajuanpablo/bugie7gwt/src 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

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 neilwilliam...@gmail.comwrote: I have an game which is run on a standard board using click handler

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