Re: how to send huge list of data to the server side from client interface in GWT

2013-07-26 Thread praveen kumar
hey, In My application I ave a front interface where the users select values and click the download button . So what ever values user is going to select will be passed to the sql query and will hit the oracle database and obtained values will be written to csv file. So, the end user should get

Re: Extending the GWT Tutorial App StockWatcher

2013-07-26 Thread salk31
My understanding is that http://en.wikipedia.org/wiki/WebSocket is the coming standard way to do things like this. Stills seems quite a wild west part of web technology. 20 years of the client just pulling from the server... On Thursday, July 25, 2013 6:43:08 PM UTC+1, Robert Lockwood wrote:

Debugging GWT why does eclipse go berserk, debugs an older version of the project and hoards lots of Giga bytes to the system?

2013-07-26 Thread Gideon Bar
I have created a 3 module GWT project. Since I am still feeling around I want to save previous versions so for each version I copy the project with a different added number to the project name. This has adverse effects: 1. The temp folder [windows 7 64 ] is crammed with tens and hundreds

Re: Debugging GWT why does eclipse go berserk, debugs an older version of the project and hoards lots of Giga bytes to the system?

2013-07-26 Thread Thomas Broyer
Answered on SO: http://stackoverflow.com/q/17873837/116472 On Friday, July 26, 2013 9:07:39 AM UTC+2, Gideon Bar wrote: I have created a 3 module GWT project. Since I am still feeling around I want to save previous versions so for each version I copy the project with a different added

Textfield with delete text image combined in GWT

2013-07-26 Thread Akshay Lokur
https://lh3.googleusercontent.com/-vXeSr6wppAQ/UfIx4NFEHGI/ASI/2F-5w0ikbZs/s1600/textfield.jpg I have a requirement wherein I want to have text field like shown: When user clicks on cross image/button, then text in textfield should get deleted. Any suggestion how can we do this in GWT?

Re: how to send huge list of data to the server side from client interface in GWT

2013-07-26 Thread Jens
In My application I ave a front interface where the users select values and click the download button . So what ever values user is going to select will be passed to the sql query and will hit the oracle database and obtained values will be written to csv file. Hopefully you validate

Re: Textfield with delete text image combined in GWT

2013-07-26 Thread Jens
Use an Image and a TextBox (styled with a transparent background and no borders). Put both in a container (HTMLPanel, FlowPanel, maybe FocusPanel) that is styled like a TextBox. Should be really easy using UiBinder. -- J. -- You received this message because you are subscribed to the Google

Re: How to prevent CSRF/XSRF when using RequestFactory

2013-07-26 Thread Sergei Kirsanov
What's the current state of Request Factory and CSRF/XSRF for 2.5.1 version? This post confuses me: http://stackoverflow.com/questions/6227436/preventing-csrf-when-using-gwts-requestfactory -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group.

Producing a JAR file out of compiled JavaScript and web resources (using Maven)

2013-07-26 Thread Otto Chrons
Hi, I would like to produce a JAR file instead of the regular WAR out of my GWT project. My GWT application is purely client-only as the server is implemented in Scala (using SBT instead of Maven). For this reason I would need to produce a JAR file containing all the final web resources

Unsubscribe please

2013-07-26 Thread MotorHead9871 .
On Wednesday, July 24, 2013, wrote: Today's Topic Summary Group: http://groups.google.com/group/google-web-toolkit/topics - RequestFactory .with() to access non-relation (primitive) properties?thismessage:/#14010ce65b049a32_group_thread_0[8 Updates] - Can't deploy my project

help with exception

2013-07-26 Thread Magnus
Hi, what could be the cause of the exception below? All my classes in the shared folder implement IsSerializable. And: from the user's perspective everything works... #-) Thanks Magnus - Jul 26, 2013 2:43:47 PM org.apache.catalina.core.ApplicationContext log SEVERE: Exception while

Re: How to prevent CSRF/XSRF when using RequestFactory

2013-07-26 Thread Thomas Broyer
On Friday, July 26, 2013 11:53:18 AM UTC+2, Sergei Kirsanov wrote: What's the current state of Request Factory and CSRF/XSRF for 2.5.1 version? Nothing's changed. This post confuses me: http://stackoverflow.com/questions/6227436/preventing-csrf-when-using-gwts-requestfactory What

TreeItem - bold only the parent item in a Tree?

2013-07-26 Thread michelin pierre
Hello, in treeview I would like to bold only the parent item, and keep sub- items in normal size. I tried to use css in this way, but it does not work: .gwt-Tree{ font-weight: bold; } .gwt-TreeItem { font-weight: normal; } .gwt-Tree .gwt-TreeItem-selected { font-weight: normal; }

Re: Producing a JAR file out of compiled JavaScript and web resources (using Maven)

2013-07-26 Thread Thomas Broyer
On Friday, July 26, 2013 12:34:41 PM UTC+2, Otto Chrons wrote: Hi, I would like to produce a JAR file instead of the regular WAR out of my GWT project. My GWT application is purely client-only as the server is implemented in Scala (using SBT instead of Maven). For this reason I would

Re: How to prevent CSRF/XSRF when using RequestFactory

2013-07-26 Thread Sergei Kirsanov
I was confused by the fact, that the post was written later than a solution was suggested here, but X-GWT-Permutation was not mentioned there. Anyway, thanks Thomas. On Friday, July 26, 2013 5:05:25 PM UTC+4, Thomas Broyer wrote: On Friday, July 26, 2013 11:53:18 AM UTC+2, Sergei Kirsanov

Re: push data from server to clients

2013-07-26 Thread Magnus
Hi, I also had such a requirement and I tried some libraries providing special technologies for this purpose (Comet, WebSockets, etc.). However, none of these libraries was light-weight, because they provided a lot of funcitionality that I did not need. Now I realized it using a polling

Re: push data from server to clients

2013-07-26 Thread Timothy Spear
I am using the gwteventservice. Fairly simple, light and does a decent job. Tim On Jul 26, 2013 9:26 AM, Magnus alpineblas...@gmail.com wrote: Hi, I also had such a requirement and I tried some libraries providing special technologies for this purpose (Comet, WebSockets, etc.). However, none

GWTChosen gets cut when placed in area with overflow:hidden.

2013-07-26 Thread Goosie
Hi! There isn't a lot of info around about GWTChosen and I have run into some problems. Right now I have a Flowpanel with a couple of ListBoxes which I have specified to flow left. To make this work I have to set overflow:hidden. But now when I want to use GWTChosen

Re: TreeItem - bold only the parent item in a Tree?

2013-07-26 Thread Vagner Araujo
Maybe.. . Tree tree = new Tree(); TreeIten parent = new TreeItem(); DOM.getFirstChild(parent.getElement()).addClassName(bold); parent.setText(Parent); parent.addTextItem(Child); tree.addItem(parent); parent = new TreeItem(); DOM.getFirstChild(parent.getElement()).addClassName(bold);

Re: GWT and Web Security

2013-07-26 Thread dhoffer
Thanks Thomas that's good information. I too have found that best practices for securing GWT applications difficult to come by. There are just bits and pieces on the web...and if you get the Spring Security book, for example as I did, they don't even mention GWT. What's needed are some

Re: GWT and Web Security

2013-07-26 Thread asif . tmcp
Thanks Juan for your response and the reference. On Thursday, July 25, 2013 7:09:37 PM UTC-4, Juan Pablo Gardella wrote: Hello, I think currently there are not frameworks that do what you want. At UI you need to write code to enable/disable components. Check this old thread:

Re: GWT and Web Security

2013-07-26 Thread asif . tmcp
Thanks Thomas, that's a lot of useful information - although I have to admit I have to work my way through it, since i am not very familiar with the AOP/ServiceLayerDecorator concept through Guice. I am using the straightforward Service/AsyncService on client side and ServiceImpl on server

Re: GWT and Web Security

2013-07-26 Thread Thomas Broyer
On Friday, July 26, 2013 7:38:39 PM UTC+2, dhoffer wrote: Thanks Thomas that's good information. I too have found that best practices for securing GWT applications difficult to come by. There are just bits and pieces on the web...and if you get the Spring Security book, for example as

GWT load issues on ios 3G device

2013-07-26 Thread Paul Mazzuca
I have an IPhone 4 which I am testing my GWT app on. In Chrome or Mobile Safari, my application will only load when connected to WIFI. This behavior seems to be consistent, but I wanted to get a sanity check from the community to see if anyone else has experienced this? I am using code

Re: GWT and Web Security

2013-07-26 Thread David Hoffer
That's good information. I had no idea Guice supported AOP, I've been using Guice for IoC and Spring Security for security functionality. (I too have an aversion to Spring for IoC but I don't have a preference yet for security). However I'd have to see an example to really understand the

Re: Textfield with delete text image combined in GWT

2013-07-26 Thread David
Hi, IE10 has this on all text inputs. Which is something I really hate since it makes the number of characters visible one less than what it was on IE9 or Chrome of FF. On password fields they now have another icon to reveal the password. Does anybody know how to remove this feature in IE10 ? :-S

Re: Textfield with delete text image combined in GWT

2013-07-26 Thread Boris Brudnoy
David, just tackled this recently. Here's a snippet that removes the Clear pseudo-element: .searchBox::-ms-clear { display: none; } The salient discovery here was that of Microsoft's pseudo-elementshttp://msdn.microsoft.com/en-us/library/windows/apps/hh767361.aspx . BORIS

Re: GWT and Web Security

2013-07-26 Thread Thomas Broyer
On Friday, July 26, 2013 8:30:29 PM UTC+2, Thomas Broyer wrote: On Friday, July 26, 2013 7:38:39 PM UTC+2, dhoffer wrote: Thanks Thomas that's good information. I too have found that best practices for securing GWT applications difficult to come by. There are just bits and pieces on

how to make a shell panel with a blinking cursor?

2013-07-26 Thread Magnus
Hi, I would like to create a panel that acts as a shell, i. g. has a blinking caret and allows the user to enter commands. If I used a textarea widget, I had to catch when the enter key is pressed. In addition, I had to suppress moving around with the and modifying text. I would have much too

Re: how to make a shell panel with a blinking cursor?

2013-07-26 Thread Boris Brudnoy
Set the contenteditablehttps://developer.mozilla.org/en-US/docs/Web/HTML/Content_Editableattribute of a panel/div to true? BORIS BRUDNOY Web Software Developer (Careers 2.0http://careers.stackoverflow.com/brudnoy , LinkedIn http://ca.linkedin.com/in/borisbrudnoy) Founder and Application

Re: GWT load issues on ios 3G device

2013-07-26 Thread Jens
Our GWT apps work just fine on 3G connections. The only issue that exists on iOS 6.x is that mobile Safari 6.x has JIT issues (actually these JIT issues also exist in Safari 6 on desktop) which can result in random JavaScript exceptions if you are unlucky. These random exceptions can also

Re: How to serve pre-compressed static content through Tomcat?

2013-07-26 Thread QC
Thanks it helps, at least I am assured that only browsers that are more than 10 years old would run into problems with this config which is negligible. On Thursday, July 25, 2013 6:44:29 PM UTC-7, Juan Pablo Gardella wrote: Sorry, I don't know. I found this page:

Re: GWT load issues on ios 3G device

2013-07-26 Thread David Feshbach
We had an issue with Sprint optimizing the page by inlining scripts. As a result, there was no source attribute for the nocache script which prevented it from loading the other scripts (which are on a different server from the host page). We got around this by adding a gwt:property meta element

Re: how to make a shell panel with a blinking cursor?

2013-07-26 Thread Magnus
Hi, looks fine! Can I catch the enter events and supress editing of the lines above the current one? Magnus -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an email

[gwt-contrib] Flow Control for GWT?

2013-07-26 Thread Heiko Braun
We've released a flow control API, inspired by Async.js, that aligns naturally with the core GWT API: http://hbraun.info/2013/07/flow-control-for-gwt/ I am wondering to what degree this might be something we could push down into the core API? Any feedback, thoughts and objections are welcome.

[gwt-contrib] Re: Flow Control for GWT?

2013-07-26 Thread Thomas Broyer
On Friday, July 26, 2013 10:40:09 AM UTC+2, Heiko Braun wrote: We've released a flow control API, inspired by Async.js, that aligns naturally with the core GWT API: http://hbraun.info/2013/07/flow-control-for-gwt/ I am wondering to what degree this might be something we could push down

[gwt-contrib] Re: Flow Control for GWT?

2013-07-26 Thread Julien Dramaix
Just FYI, Promises was also implemented in GQuery : https://code.google.com/p/gwtquery/wiki/Promises#Monitoring_simultaneous_async_calls On Friday, July 26, 2013 11:18:22 AM UTC+2, Thomas Broyer wrote: On Friday, July 26, 2013 10:40:09 AM UTC+2, Heiko Braun wrote: We've released a flow

[gwt-contrib] GWT module in gwtproject.org site

2013-07-26 Thread Kerry Wilson
I am tinkering around with the website sources and I noticed a GWT module in the site that is not generated by the build and I cannot find any reference of it. However, it is available on the live site. What does this mystery module do and where is the source code? kw --

Re: [gwt-contrib] GWT module in gwtproject.org site

2013-07-26 Thread Daniel Kurka
The source code is still in the gwt-site-webapp project, see: https://gwt.googlesource.com/gwt-site-webapp/+/master/src/main/java/com/google/gwt/site/webapp/client/GWTProjectEntryPoint.java On Fri, Jul 26, 2013 at 7:12 PM, Kerry Wilson kerryrwil...@gmail.comwrote: I am tinkering around with

Re: [gwt-contrib] GWT module in gwtproject.org site

2013-07-26 Thread Kerry Wilson
Should that exist within the markdown site? Which project is built to package the final deployable archive? kw On Fri, Jul 26, 2013 at 12:36 PM, Daniel Kurka danku...@google.com wrote: The source code is still in the gwt-site-webapp project, see:

Re: [gwt-contrib] GWT module in gwtproject.org site

2013-07-26 Thread Daniel Kurka
In the long term we should change the gwt-site project to be able to compile that module as well and package it with the rest of the site. (as well as running dev mode, etc.) So far this has not been a pressing issue, if you like to do something about it feel free to contribute. - Daniel On