etti eitan

Greenhorn
+ Follow
since Sep 24, 2011
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by etti eitan

Hi,

This is the code :
this.popup = new PopupPanel(false, true);
this.popup.center();

The problem was solved when I add the following line :
this.popup.setGlassEnabled(true);
11 years ago
GWT
Hi,

When I open new popup with modal equal to true I still able to click on buttons, works with keyboard, write to text box on IE8.
On FF it works OK (all events and action are disable until the popup is close).

Why is that and what need to be done ?

Thanks


11 years ago
GWT
Thanks for your quick response.

I use GWT RPC in my application but I don't understand how can I use it here.

I have a grid with data and I want that when user press the "Save" button the data will be saved.


One way to do this is that when button is click a new window will be open with url that include call to servelt and the servelt will return the csv data and the user can make "Save as" to save the data.
Another way is to use the browser download feature.

Is there another way ? how can I use the GWT RPC for this ?

Thanks
12 years ago
GWT
I need to send the info to servelt.
I want to send back the csv data so I can download it from client.
12 years ago
GWT
How do I send the Object/List from the client to servlet ?
12 years ago
GWT
Hi,

I have application with grid.
I want to download this info and save it as csv.

How do I transfer the data to the servelt?

Thanks

12 years ago
GWT
Hi,

I want that my application will save files in the server side and that after that I will be able to access these files.

I am sending to the server using rpc the directory where to save files which is GWT.getModuleName() + "/Diffs".

The file created under <workspace>/<project name>/<war>/<project name>/Diffs

After that in the client I use :
Window.open(GWT.getModuleName() + "/Diffs/"+ button.getTitle(), "_blank","status=1,width=350,height=150");

To open the files.

In development mode it works OK but when I run it in production mode using tomcat the file saved under :
C:\Program Files (x86)\Apache Software Foundation\Tomcat 7.0\<project name>\Diffs

Is that the right way to write it ?
How can I save the files under the webapp directory ?

Thanks

12 years ago
GWT
Hi,

I want to create a page in GWT that contain 2 parts.One for input and second with results.

The input part should be device to 3. 2 parts that contain label,text box and in the middle several checkbox and button.

How can it be done ?

Thanks
12 years ago
GWT