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

2013-07-25 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: UIBinder - how to style tables?

2013-07-25 Thread Magnus
Hi, using for the first tr has no effect, i. e. there is no line (in designer's preview). Magnus -- http://dl.google.com/gwt/DTD/xhtml.ent";> .border-side { border-left: solid 1px black; } .border-bottom { border-bottom: solid 1px black; }

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

2013-07-25 Thread Juan Pablo Gardella
Sorry, I don't know. I found this page: http://webmasters.stackexchange.com/questions/22217/which-browsers-handle-content-encoding-gzip-and-which-of-them-has-any-special hope it will be useful for you. Juan 2013/7/25 QC > Yet another questions about the Tomcat noCompressionUserAgents paramete

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

2013-07-25 Thread QC
Yet another questions about the Tomcat noCompressionUserAgents parameter, what should I set it to? If search online I can only find the boilerplate noCompressionUserAgents="gozilla, traviata" which doesn't much sense, I even couldn't find the corresponding browsers. On Thursday, July 25, 2013

Re: GWT and Web Security

2013-07-25 Thread Thomas Broyer
On Friday, July 26, 2013 12:39:53 AM UTC+2, asif...@gmail.com wrote: > > Hi , > > I am navigating my way through GWT - and hit a major conceptual roadblock > with security issues. > > If i want to implement security ( authentication and authorization) in my > GWT webapp( doesn't include app-en

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

2013-07-25 Thread QC
Interesting, I didn't know I can translate the requests! On Thursday, July 25, 2013 4:18:55 PM UTC-7, Juan Pablo Gardella wrote: > > Hello, > > If you zip all the files with '.zip' extension, you can add a filter that > translates 'a.html' to 'a.zip'. What do you think? > > Juan > > > 2013/7/25 Q

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

2013-07-25 Thread Juan Pablo Gardella
Hello, If you zip all the files with '.zip' extension, you can add a filter that translates 'a.html' to 'a.zip'. What do you think? Juan 2013/7/25 QC > Hi, > > recently I've been looking into how to improve the performance of my > website through compression. And I've browsed through almost a

Re: GWT and Web Security

2013-07-25 Thread Juan Pablo Gardella
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: https://groups.google.com/forum/#!msg/google-web-toolkit/asDc2-JFy-A/z9izD9p_RoIJ 2013/7/25 > Hi , > > I am navigating my way through GWT

GWT and Web Security

2013-07-25 Thread asif . tmcp
Hi , I am navigating my way through GWT - and hit a major conceptual roadblock with security issues. If i want to implement security ( authentication and authorization) in my GWT webapp( doesn't include app-engine) what is conceptually the best *Framework *( for example shiro , acegi etc) to

How to serve pre-compressed static content through Tomcat?

2013-07-25 Thread QC
Hi, recently I've been looking into how to improve the performance of my website through compression. And I've browsed through almost all related topics in the group but still have questions unresolved. Enabling the tomcat built-in compression is easy, but I really like to serve pre-compresse

Re: UIBinder - how to style tables?

2013-07-25 Thread Thomas Broyer
On Thursday, July 25, 2013 8:09:22 PM UTC+2, Jens wrote: > > is an ordinary DOM element so you have to use the class attribute > like in normal HTML, e.g. . > > Whenever you use a widget, e.g. , all its attributes correspond > to setter methods without the "set" prefix. So the styleName attrib

auto refersh list grid

2013-07-25 Thread jaykishan kapat
hi, i have a requirement where i need to create a list grid which will automatically refresh after every few seconds. While refreshing it should not show loading message and also not distrupt the existing view. Also when refresh is happening, the user should not be blocked from doing other ta

Re: Extending the GWT Tutorial App StockWatcher

2013-07-25 Thread Robert Lockwood
Thanks for the link, I'll check it out. This is part of a leaning process to control a couple of physical devices externally "attached" to the host computer. On Thursday, 25 July 2013 00:22:43 UTC-7, salk31 wrote: > > It would be unusual to start a thread on the server to do this. > > Why d

Re: Announce: Cowj 0.2

2013-07-25 Thread james wilson
Hi David, the library and demo sound great but the links appear to be broken. Is there any chance that you could make the files available again? Congratulations on the good work! James On Sunday, 2 October 2011 12:52:49 UTC+1, David Given wrote: > > I did some more work on my GWT emulation l

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

2013-07-25 Thread Jens
Sure, just you void as return type of your RPC method and AsyncCallback as callback. The server will then only send back a tiny amount of data telling the client that the request was successful. -- J. -- You received this message because you are subscribed to the Google Groups "Google Web Too

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

2013-07-25 Thread fedex
I don't want to use RPC call because since I have to just send the list to server and don't need any response back. is it possible using RPC? On Thursday, July 25, 2013 1:21:58 PM UTC-5, Jens wrote: > > Why don't you use any of GWT's server communication features? > RequestFactory, GWT-RPC, Requ

Re: How can I use Incremental Command in GWT

2013-07-25 Thread Jens
I dont get it. What do you want to do? 1.) You are only able to run ResultSet rs = stmt.executeQuery(whereClause);on the server. To tell the server to execute this line you need a RPC call from the client to the server. So this line can actually never execute before a RPC call because a RPC cal

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

2013-07-25 Thread Jens
Why don't you use any of GWT's server communication features? RequestFactory, GWT-RPC, RequestBuilder? -- J. -- 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

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

2013-07-25 Thread fedex
Hi everyone, In my current application I have to send huge list of data to the server side which will be passed to the oracle query. Currently I am using window.Location.replace(quertstring) method to pass the list where by using request parameters we can obtain the client interface values. B

Re: UIBinder - how to style tables?

2013-07-25 Thread Jens
is an ordinary DOM element so you have to use the class attribute like in normal HTML, e.g. . Whenever you use a widget, e.g. , all its attributes correspond to setter methods without the "set" prefix. So the styleName attribute is in reality an instruction for UiBinder to call UiObject.setSty

UIBinder - how to style tables?

2013-07-25 Thread Magnus
Hi, I use UIBinder for table based layout (see code below). Now I would like to draw a line between specific rows or colums, e. g. between the first row (titles) and the rest. To draw a line below a specific tr in a table with pure HTML/CSS I found a solution like this: where ".border-botto

Re: Strange focuspanel behaviour

2013-07-25 Thread Mateusz Mazurek
Ok, hmm, maybe I will you tell more info.. In my focuspanel I have html Panel, in htmlPanel VerticalPanel and in vertical Panel some Horizontal Panels... I invoke setFocus on this (FocusPanel). What's here can be broken? No nested focus... Ok, so, what I must to do to have that, what I want w

Re: Strange focuspanel behaviour

2013-07-25 Thread Thomas Broyer
On Thursday, July 25, 2013 5:04:11 PM UTC+2, Mateusz Mazurek wrote: > > Ok, I'll be. Sory for cross-post but I don't have any idea what's wrong.. > I'd say your design is broken, and/or your assumptions on focus in the browser (and in GWT) are wrong. First and foremost, there's nothing like "n

How can I use Incremental Command in GWT

2013-07-25 Thread Patrick Tucker
You didn't say what version of GWT you are using but DeferredCommand is deprecated. You should be using Scheduler.get() and the appropriate function with a ScheduledCommand. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe

Re: EntityProxy getId is always null for Entity with Composite Key

2013-07-25 Thread Thomas Broyer
RequestFactory doesn't care whether you have a getId() on your EntityProxy or not, it's just a property like any other, and as such, because it's a ValueProxy in your case, you have to explicitly ask for it with .with("id") for the property to be populated: http://www.gwtproject.org/doc/latest/

EntityProxy getId is always null for Entity with Composite Key

2013-07-25 Thread Bill Salvucci
My Entity uses a @EmbeddedId for its id. I can see that the getId on the entity in the server is returning an instance of the pk class, but it ends up being null in the corresponding entity proxy instance on the client. request.findAllAccounts() .fire(new Receiver>() { @Override

Re: Strange focuspanel behaviour

2013-07-25 Thread Mateusz Mazurek
Ok, I'll be. Sory for cross-post but I don't have any idea what's wrong.. W dniu czwartek, 25 lipca 2013 15:00:28 UTC+2 użytkownik Mateusz Mazurek napisał: > > I have strange problem.. I want to do this: > > I have a focuspanel. In default I want to give him focus: > >> this.setFocus(true); >> >

Re: TabLayoutPanel not visible in IE - old bug still unsolved?

2013-07-25 Thread jaga
Firstly make sure you use nested layout panels. This should be from the root all the way to the tablayoutpanel. Then if the problem remains the way I fixed this is to programmatically switch between the tabs. You should do this after you have done everything else in code for setting up the scree

Re: Strange focuspanel behaviour

2013-07-25 Thread Thomas Broyer
When you cross-post, please post links too! http://stackoverflow.com/q/17858640/116472 On Thursday, July 25, 2013 3:00:28 PM UTC+2, Mateusz Mazurek wrote: > > I have strange problem.. I want to do this: > > I have a focuspanel. In default I want to give him focus: > >> this.setFocus(true); >> >

Regarding TimePicker

2013-07-25 Thread siva kumar
Hi 1.How to create Time Picker widget for textbox? i had included the gwt-timepicker.jar with my project. and inherits the plugin in gwt.xmlfile HourMinutePicker hourMinutePicker = new HourMinutePicker(PickerFormat._12_HOUR); RootPanel.get().add(hourMinutePicker); How to call hourminutep

Strange focuspanel behaviour

2013-07-25 Thread Mateusz Mazurek
I have strange problem.. I want to do this: I have a focuspanel. In default I want to give him focus: > this.setFocus(true); > I have function onBlur which is able to save all information from focuspanel. But the focus panel doesn's have focus... I must click on him, and in other place to

Re: Switching between two screens take a long time

2013-07-25 Thread salk31
Ah. The advantage of lurking in both places. I'm not sure I should be lurking on this one. I'm sure my wife could think of things she rather I did. On Thursday, July 25, 2013 9:19:54 AM UTC+1, Thomas Broyer wrote: > > Question answered on SO: http://stackoverflow.com/q/17833714/116472 > "Problem

Re: Switching between two screens take a long time

2013-07-25 Thread Thomas Broyer
Question answered on SO: http://stackoverflow.com/q/17833714/116472 "Problem" was DevMode, or more accurately complaining that DevMode is slow. On Wednesday, July 24, 2013 12:10:46 PM UTC+2, kpedia wrote: > > Hi everybody, > > I'm a newbie with GWT. My problem is this : > > I have a button in my h

Re: Switching between two screens take a long time

2013-07-25 Thread salk31
Have you tried profiling in the browser? If you set the GWT compiler output style to PRETTY it is pretty easy to profile in the browser dev tools. Just don't try and use IE (JS profiling is very broken). On Wednesday, July 24, 2013 11:10:46 AM UTC+1, kpedia wrote: > > Hi everybody, > > I'm a new

Re: Date Picker with Multiple Date pick (not a sequence dates like date range)

2013-07-25 Thread salk31
I've not seen one I'm afraid. DatePicker looks very set in just editing a single value. Could your users like with an "add another date" approach? So pick one at a time :( On Tuesday, July 23, 2013 10:55:50 AM UTC+1, Huy Tran Quang wrote: > > Hi everybody, >Today i met a situation that

Re: How can I use Incremental Command in GWT

2013-07-25 Thread salk31
I'm not sure why you want to use DeferredCommand. The UI kick off an async request seems pretty standard. I'd double check to see if you JDBC is really being fired _before_ the async request is started. That seems unlikely. Too many debugger threads running? On Wednesday, July 24, 2013 4:30:02

Re: Extending the GWT Tutorial App StockWatcher

2013-07-25 Thread salk31
It would be unusual to start a thread on the server to do this. Why don't you want the client to poll? If you really want to push from the server then you are into complicated stuff like https://code.google.com/p/gwt-comet/ I've never used any of this stuff. What is your server implemented i