How to test my Spring service from GWT ui using GWTTestCase?

2013-01-07 Thread Saeed Zarinfam
I have configured a GWT project using Spring MVC (for RPC calling and server side dependency injection). I have tested gwt-test-utilshttps://github.com/gwt-test-utils/gwt-test-utilslib, it was working with Spring and Spring MVC nice but my GWT ui is complicated and it could not parse my

GWT rpc callback does not call after calling in GWTTestCase

2013-01-07 Thread Saeed Zarinfam
I have written a GWTTestCase like this: public void testClickButton() { SampleView view = new SampleView(); RootPanel.get().add(view); view.textBox.setText(Saeed Zarinfam); assertEquals(, view.label.getText()); //ButtonElement.as

How can i say GWTTesCase use web.xml configuration instead of servlet tags define inside *.gwt.xml?

2013-01-07 Thread Saeed Zarinfam
I understand that GWTTesCase does not use web.xml for test gwt widgets and use servlet tags define inside *.gwt.xml (module file). I was wondering how can i define filter or listener or context-param or 'servlet init-param' for using in GWTTesCase or How can i say GWTTesCase use web.xml

Re: Super Dev Mode general question

2012-12-19 Thread Saeed Zarinfam
Debugging GWT applications in IDE is one of the most important feature of GWT from the earliest version of it. I agree with Chris that it is ok if Dev Mode doesn't always support the latest version of each browser or even dropping support for most browsers (for example only support Firefox or

does gwt use ANTLR ?

2011-09-09 Thread Saeed Zarinfam
Hi guys, I want to know , does gwt use ANTLR for java language processing or something in any compilation phase ? -- 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: gwt python

2011-07-30 Thread Saeed Zarinfam
Hi You can use python only on server side of a GWT application and then you will not be able to use RPC mechanism (because of using python on server side ). -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

Re: Am i using GWT or GXT

2011-07-23 Thread Saeed Zarinfam
Hi, You can check *.gwt.xml file of your project. for example if your GWT project uses GXT , its *.gwt.xml file must contain this line : inherits name='com.extjs.gxt.ui.GXT'/ -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: Can GWT be used to edit excel?

2011-07-23 Thread Saeed Zarinfam
Hi, Yes it is possible. At first you must open your excel file with a library (e.g Apache POI) on the server side and then send excel file data to your GWT application , after changing data , GWT application send changes to the server and then you must persist this change with your library (e.g

How can i write a javascript library in GWT ?

2011-07-22 Thread Saeed Zarinfam
Hi guys, I want to develop a shared library so that the team member can call its method in JavaScript. how can i do that ? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Load compiled GWT module in a GWT application !

2011-07-22 Thread Saeed Zarinfam
Hi guys, I know this is a strange question but i have this problem in a real project. We are developing a container (e.g. gadget container) using GWT and also we want to have a GWT project per our module (modules load with container at run-time) : 1- we have a shared GWT project that every module

Re: calling gwt from external client

2011-07-22 Thread Saeed Zarinfam
Hi You can write web service for task creation operation and then call web service from out side of the application for creating task. -- 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: Error in ant build

2011-07-22 Thread Saeed Zarinfam
Hi, Please describe more. Which target do you run? What is complete error message? -- 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,

Are there any sample maven projects for gwt-google-apis gadget ?

2011-03-26 Thread Saeed Zarinfam
Hi guys I have a question. Are there any sample maven projects for gwt-google- apis gadget ? If anybody know anything about it , please guide me. I want to setup a maven project for developing gadget with gadget library for GWT. thanks in advanced. -- You received this message because you are

Using Google Voice Video Chat plug-in in GWT

2010-06-10 Thread Saeed Zarinfam
I want to write a GWT program that uses Google Voice Video Chat plug- in. Is there any GWT API for doing this work ? -- 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.

Re: Feature Request - Improve Visual Look

2010-02-07 Thread Saeed Zarinfam
I agree with rakesh wagh. for developer gwt default theme is good but for managers and customers , gxt themes is very attractive. i suggest to gwt team that provides an easy way for creating custom theme and also place a sample application (like showcase) with fantastic UI ito gwt samples bundle.

Re: GWT 2.0 + Netbeans

2009-12-13 Thread Saeed Zarinfam
I am working with GWT 2.0 in netbeans without using GWT4NB plugin. http://saeedzarinfam.blogspot.com/2009/03/gwt-16-on-netbeans-65.html -- 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: GWT application that can run on the server and client?

2009-11-26 Thread Saeed Zarinfam
Hi This is possible. You can do it with a SWT Browser widget and a embedded web server (tomcat or jetty) and war folder of your GWT application. On Nov 18, 1:26 am, Ezra esk...@gmail.com wrote: Hi GWT community, Is it possible to have a gwt application run on the server and the client?  

hosted mode problem with gwt 2m2

2009-11-10 Thread Saeed Zarinfam
Hi I wanted to test GWT 2 on my computer. I installed IE plug-in for GWT 2. after my test was finished. when i start my old program (written in GWT 1.7) i receive this error: [ERROR] Invalid version number 2 passed to external.gwtOnLoad(), expected 1.6; your hosted mode bootstrap file may be out

Re: hosted mode problem with gwt 2m2

2009-11-10 Thread Saeed Zarinfam
Hi I think GWT 2 IE plug-in damage (or change) to those *.dll that SWT work with it. I uninstalled that plug-in but my problem did not fix. I cannot run any GWT 1.7 projects in my computer. please help me. --~--~-~--~~~---~--~~ You received this message because

Re: hosted mode problem with gwt 2m2

2009-11-10 Thread Saeed Zarinfam
Hi I solved my problem !!! I cleared IE cache and history then solved 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

How to communicate with internal JavaScript in a Frame ?

2009-09-14 Thread Saeed Zarinfam
Hi I add a Frame widget to my GWT application. I want to call a JavaScript method that located in Frame. how can i do it ? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: FlowPanel

2009-09-08 Thread Saeed Zarinfam
Hi You must add your vertical panel in a horizontal panel or decrease vertical panel width. --~--~-~--~~~---~--~~ 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: Listen for click on VerticalPanel?

2009-09-08 Thread Saeed Zarinfam
Hi also you can use this code: VerticalPanel verticalPanel = new VerticalPanel() { @Override public void onBrowserEvent(Event event) { super.onBrowserEvent(event); switch (DOM.eventGetType(event)) { case Event.ONCLICK: {

When GWT 2.0 release ?

2009-08-16 Thread Saeed Zarinfam
Hi When GWT 2.0 release ? thanks. --~--~-~--~~~---~--~~ 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: CodeSplitting

2009-08-15 Thread Saeed Zarinfam
Thanks Paul I want to know when GWT 2.0 release. --~--~-~--~~~---~--~~ 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: How to split a large application?

2009-08-15 Thread Saeed Zarinfam
Thanks for your guide Stefan. --~--~-~--~~~---~--~~ 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

CodeSplitting

2009-08-14 Thread Saeed Zarinfam
Hi all I have problem that will solve with CodeSplitting feature. I want to know which GWT version included this feature and if does not release yet when release. thanks. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

How can i right to left a MenuBar ?

2009-08-11 Thread Saeed Zarinfam
Hi How can i right to left a MenuBar ? please help me thanks. --~--~-~--~~~---~--~~ 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

about iframe

2009-08-10 Thread Saeed Zarinfam
Hi A friend suggest me use Frame widget for loading a GWT module in another GWT module. I want to know is this a best solution for me. I want to build an application that load GWT modules and manage in (like a gadget container). thanks. --~--~-~--~~~---~--~~ You

Re: How to split a large application?

2009-08-10 Thread Saeed Zarinfam
Hi David I have the same problem. I connect main application with sub application using append # in the end of iframe URL but this approach does not work in some browser. please describe about how you enabled the communication between the applications with an example. thanks.

Re: how to load a url in a GWT application

2009-08-07 Thread Saeed Zarinfam
Thnks for help dear Manuel. On Aug 2, 9:04 pm, Manuel Carrasco Moñino manuel.carrasc...@gmail.com wrote: So, use an iframe to load the second application: Frame frame = new Frame(http://path_to_your_second_app;); Manolo Carrasco On Sun, Aug 2, 2009 at 6:55 AM, Saeed Zarinfam zarinfa

How can i load Gadget content (JavaScript ) in my GWT application

2009-08-07 Thread Saeed Zarinfam
Hi I have been write a gadget with some JavaScript files. i want to load content of this gadget in my gwt application how can i do it. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

how to load a url in a GWT application

2009-08-01 Thread Saeed Zarinfam
Hi I build a GWT application that has a URL. I want to load this URL in the panel in another GWT application. how can i do that ? thanks. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: how to load a url in a GWT application

2009-08-01 Thread Saeed Zarinfam
Hi Manuel. I build a GWT application (called app A) and then i compile it and deploy it on the server this application has a URL in server. now in another GWT application i want to load deployed version of app A into a panel (or something). how can i do that ? thanks a million.

Ctrl + s keyboard event in GWT

2009-06-30 Thread Saeed Zarinfam
Hi I want to add Ctrl + s or Ctrl + xxx short key to my GWT program. please guide me. thanks. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

RPC error in JPA (toplink)

2009-04-26 Thread Saeed Zarinfam
Hi When i want to get entity list from top-link JPA encounter following error: please help me. [WARN] Exception while dispatching incoming RPC call com.google.gwt.user.client.rpc.SerializationException: java.lang.reflect.InvocationTargetException at

Re: RPC error in JPA (toplink)

2009-04-26 Thread Saeed Zarinfam
javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.NamedQueries; import javax.persistence.NamedQuery; import javax.persistence.Table; /** * * @author Saeed Zarinfam */ @Entity @Table(name = ole_exam) @NamedQueries({...@namedquery(name

How to mask page when show a dialog box ?

2009-03-18 Thread Saeed Zarinfam
Hi I want to mask page element when i show a dialog box over the page (like google reader message box). please guide me. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: How to call a servlet from GWT

2009-03-11 Thread Saeed Zarinfam
With use RequestBuilder you can send a request to a servlet and with use RPC you ca call a method from server and send to this method parameters. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit

GWT on Netbeans

2009-03-10 Thread Saeed Zarinfam
I use Netbeans IDE for developing GWT application easily . for more information see this link: http://saeedzarinfam.blogspot.com/2009/03/gwt-16-on-netbeans-65.html --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: Performance better setting attributes in CSS or in Java code?

2009-03-10 Thread Saeed Zarinfam
I think second approach is faster in runtime. --~--~-~--~~~---~--~~ 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 on Eclipse

2009-03-09 Thread Saeed Zarinfam
I use Netbeans IDE for developing GWT application easily . for more information see this link: http://saeedzarinfam.blogspot.com/2009/03/gwt-16-on-netbeans-65.html --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

How to show a swf file in a panel

2008-10-06 Thread Saeed Zarinfam
Hi I have a banner and i want to show it in the panel . how i can do it ? please help me ? thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to