Re: Reporting in GWT

2011-12-27 Thread Ahmet Dakoglu
You can generate the report using e.g jasperreports and show it in seperate window. BTW, This way is not related with gwt but a good solution i think On Tue, Dec 27, 2011 at 5:21 AM, kaung myat fedora.dea...@gmail.com wrote: Hi all,  I want to create a web page report with gwt. What kind of

Re: Develop Web application

2011-12-27 Thread Z.A Jafari
+ GWT doc's get you well started. See the demo's app'.s i have gone through the demos. i have also gone through the posts which makes me more confused because of so many different comments. So, I have done my homework.But need expert advise to get started.For e.g. if you were on my place what

Re: Develop Web application

2011-12-27 Thread Z.A Jafari
thanks for your feedbacks. for the hibernate section, do i use GILEAD tool or would you use something else,as a whole On 27 December 2011 13:17, Ed Bras post2edb...@gmail.com wrote: because of so many different comments. This is because there are many way's do/implement things and there is no

Re: Using java.util.Collections in GWT application

2011-12-27 Thread Alfredo Quiroga-Villamil
If the code you have posted is meant to run in the client, the synchronized if I am not mistaken does not apply. There are no threads there. Regards, Alfredo On Dec 27, 2011 9:38 AM, fjarenales fjarena...@gmail.com wrote: Hi folks, I'm trying to use Collections and the method

Hiii

2011-12-27 Thread Amrutha Thomas
Can anybody tell me how to create a virtual keyboard in my login page using gwt.Please do reply -- with best regards, Amrutha -- 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: Develop Web application

2011-12-27 Thread Ed Bras
thanks.can you please post the link for the expense app. i have gone through the demos Which demo app's did you go through? and where did you find them? On Tue, Dec 27, 2011 at 11:16 AM, Z.A Jafari zjaff...@gmail.com wrote: thanks.can you please post the link for the expense app. On 27

Re: Initializing Hibernate

2011-12-27 Thread Paul Robinson
This really depends on how you set up your server, but you will probably have a servlet that is used for communication with your GWT client. So you can put your initialization code in your servlet's init() method. HTH Paul On 24/12/11 17:16, Blake wrote: Greetings, I want to use Hibernate

Re: Develop Web application

2011-12-27 Thread Ed Bras
because of so many different comments. This is because there are many way's do/implement things and there is no silver bullet. It all depends on your own situation. You are the expert about your problem domain and as such the best one that can decide which tools/mechanisms to use by studying

Re: Develop Web application

2011-12-27 Thread Ed Bras
I would probably go for the Request Factory as I commented on the current discussion on this subject. On Tue, Dec 27, 2011 at 10:52 AM, Z.A Jafari zjaff...@gmail.com wrote: thanks for your feedbacks. for the hibernate section, do i use GILEAD tool or would you use something else,as a whole

Re: Develop Web application

2011-12-27 Thread Ed Bras
http://code.google.com/webtoolkit/doc/latest/tutorial/gettingstarted.html This is tutorial to build your first Hello world app. Download the SDK in the download section and in the zip you find all the sample/demo app you need to make you a gwt expert. On Tue, Dec 27, 2011 at 11:38 AM, Z.A

Re: Develop Web application

2011-12-27 Thread Z.A Jafari
http://code.google.com/webtoolkit/doc/latest/tutorial/gettingstarted.html On 27 December 2011 13:59, Ed Bras post2edb...@gmail.com wrote: thanks.can you please post the link for the expense app. i have gone through the demos Which demo app's did you go through? and where did you find them?

Re: Why GWT HTTP client can't receive HTTP response

2011-12-27 Thread Alan Chaney
If you can limit your target audience to ff 3.5+, Webkit 4+ (chrome, safari) and ie8+ you can also use CORS. See http://saltybeagle.com/2009/09/cross-origin-resource-sharing-demo/ If you need to support IE8/9 then you will have to add a few lines of JSNI to provide M/S XDR support. CORS is

Re: Develop Web application

2011-12-27 Thread Ed
Please do more homework before posting: + GWT doc's get you well started. See the demo's app'.s + There are many discussions on Hibernate/JPA/Gilead that help you make the correct decision. That said: there is one going on as we speak. + Google Search helps you as there are many getting started

Re: widget's parent does not implement HasWidgets

2011-12-27 Thread Ed
Put a breakpoint in Widget.removeFromParent and see why it throws that exception (at line 204). Apparently your display contains a parent Widget that doesn't implement the HasWidget interface. From your code this isn't clear. -- You received this message because you are subscribed to the

Develop Web application

2011-12-27 Thread Z.A Jafari
Hello there, I have a ERP application which I have developed with JAVA Swing and hibernate. My Users RDP the server and run the application. Now I wan tto develop a reporting application from the data captured from my Java application. I want to use GWT/GXT to develop the reporting system. Can

Re: Develop Web application

2011-12-27 Thread Z.A Jafari
can you please provide the link for the expense application On 27 December 2011 13:22, Z.A Jafari zjaff...@gmail.com wrote: thanks for your feedbacks. for the hibernate section, do i use GILEAD tool or would you use something else,as a whole On 27 December 2011 13:17, Ed Bras

Re: Disable Datepicker date

2011-12-27 Thread Ed
Please reply with your valuable answers. :) Please ask valuable questions ;) This has been asked many times in the forum, search for it please. BTW: it's simple to do yourself, just extends the GWT datepicker classes. -- You received this message because you are subscribed to the Google Groups

Re: Visual Event

2011-12-27 Thread Ed
I am not sure if I can completely answer your question as I am not a JS expert, but let's give it a try You might want to ask this in the contributor forum where you find more dev team members. GWT holds the current fired event as global property in

Re: Hiii

2011-12-27 Thread Ed
Details? -- 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/-/fi_g-7_DVTYJ. To post to this group, send email to google-web-toolkit@googlegroups.com.

TabLayoutPanel SelectionHandler invoked multiple times

2011-12-27 Thread ALB-PSP-DV1
Hi, I have a TabLayoutPanel with 3 tabs. I have added a selection handler to it to change the color of the selected/unselected tabs. However the selectionHandler seems to be invoked 3 times instead of once when I select a tab. i.e. SelectionHandler invocation = Total number of tabs in

Re: Why GWT HTTP client can't receive HTTP response

2011-12-27 Thread Jens
1.) If the domain of the external URL is actually your production domain (the one where you would deploy and access the app for production) but you are developing using localhost as domain or similar, you can disable SOP in several browsers (google for disable SOP). But this is only useful for

gwt virtual keyboard

2011-12-27 Thread Amrutha
I have created a login page and virtual keyboard using gwt designer. When i click on show keyboard icon in login page, keyboard should come there and if i press a key that particular key charactor or number should appear in username field and password field. How could i implement this using gwt?In

Visual Event

2011-12-27 Thread theallan
Hello all, I'm the author of a bookmarklet called Visual Event ( http://www.sprymedia.co.uk/article/Visual+Event+2 ) which shows events that are assigned to DOM elements. Unfortunately due to the lack of being able to query the DOM to find out what events have been applied to elements what I do

Re: Using java.util.Collections in GWT application

2011-12-27 Thread Jens
Collections.synchronizedList() is not emulated by GWT (see: http://code.google.com/intl/de-DE/webtoolkit/doc/latest/RefJreEmulation.html) Your client code runs in a single thread in the browser so there is no need for synchronizedList. -- J. -- You received this message because you are

Re: Why GWT HTTP client can't receive HTTP response

2011-12-27 Thread Alfredo Quiroga-Villamil
Unf. not a whole lot. Easiest might be to: UI - Your server - XML API Between the UI and your server you can use a variety of protocols. From your server, then consume the API you need and expose it to the client. Regards, Alfredo On Dec 27, 2011 12:25 AM, Justin@GWT justi...@gmail.com wrote:

Disable Datepicker date

2011-12-27 Thread Rahul Mathur
Hi, I am using From and To datpickers, when I select date from from datepicker, I want all dates in calender before 'From date' to get disabled. Like if, 'From date' chosen from it is : 22/12/2011, I want all dates before it in calendar to be seen as disable. Please reply with your valuable

Re: Abridged summary of google-web-toolkit@googlegroups.com - 43 Messages in 20 Topics

2011-12-27 Thread xavier . ivanez
NOUVEAU - BORE@L INFORMATIQUE INTEGRE JPA CONSULTANTS Afin de mieux vous servir, nos deux sociétés ont décidé de réunir leurs compétences et leur professionnalisme sous le nom de JPA CONSULTANTS SA . Par ce partenariat, nous nous améliorerons sur les points suivants : • Logiciel :

Re: Develop Web application

2011-12-27 Thread Z.A Jafari
thanks.can you please post the link for the expense app. On 27 December 2011 13:40, Ed Bras post2edb...@gmail.com wrote: I would probably go for the Request Factory as I commented on the current discussion on this subject. On Tue, Dec 27, 2011 at 10:52 AM, Z.A Jafari zjaff...@gmail.com

Re: Creating image from base64

2011-12-27 Thread Jens
If you want to support larger images (larger than 32kb) and/or IE6/IE7 you have to use your current approach: class MyImage implements Serializable { String imageUrl; //which will point to your image servlet AddtionalData addtionalData; } And in my opinion there is nothing wrong with

Re: Abridged summary of google-web-toolkit@googlegroups.com - 43 Messages in 20 Topics

2011-12-27 Thread Bradley Woods
On Tue, Dec 27, 2011 at 8:42 AM, google-web-toolkit@googlegroups.comwrote: Today's Topic Summary Group: http://groups.google.com/group/google-web-toolkit/topics - Creating image from base64 #1347fc2255674bc4_group_thread_0 [2 Updates] - Why GWT HTTP client can't receive HTTP

Using java.util.Collections in GWT application

2011-12-27 Thread fjarenales
Hi folks, I'm trying to use Collections and the method synchronizedList. I have something like this: private ListUserBean myList = Collections.synchronizedList(new ArrayListUserBean()), where UserBean is a java-bean used in my application. When i try to compile this, i get the next error: The

Best MVP Pattern for iPhone-like Navigation, with top level Tab-Bar?

2011-12-27 Thread Eric
I am starting a new GWT app where I want to use best practices and MVP (model view presenter). I want to duplicate the functionality in a native app that has both iPhone and iPad versions. What is the best way to apply MVP, Activities, and Places to achieve this? My UI will be structured like

Datagrid headers grouping?

2011-12-27 Thread John99
Hello. Is it possible to make header grouping (colspan) in datagrid(celltable)? Thanx -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

where are all the jar files for gwt projects?

2011-12-27 Thread Elhanan
i almost finished setting up eclipse for gwt source development, however the buildpath references a huge amount of jars which are not in the svn repo, (icu4j,jaxb-api-2-1 etc..) what am i missing? -- You received this message because you are subscribed to the Google Groups Google Web

RequestFactory Value Proxy Use Case

2011-12-27 Thread EMan
I am a little unclear as to how you use a Value Proxy (as opposed to an Entity Proxy) in RequestFactory. I am assuming I can use it to do some server processing and return data back to the client? But how do I do that? I don't see a way to use a Locator, how do I populate the data in a

Re: Datagrid headers grouping?

2011-12-27 Thread Jeff Larsen
yes, but it is only in trunk. -- 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/-/iS7iEE0IWfkJ. To post to this group, send email to

Re: GWT Plugin does not work in Chrome 16.0.912.63 m on Windows 2008 64bit

2011-12-27 Thread mkn
I already tried that. I uninstalled the plugin reinstalled the plugin = same result. I uninstalled chrome, reinstalled chrome, installed the plugin = same result. This is so annoying. I have the same setup on another server and there it works fine... On Dec 27, 6:19 am, Mohit agg.mo...@gmail.com

Re: RequestFactory Value Proxy Use Case

2011-12-27 Thread Patrick Julien
A ValueProxy acts as a bridge to existing data types or objects that do get persisted but are outside your control, e.g., you can proxy a User from AppEngine to your client: http://code.google.com/appengine/docs/java/javadoc/com/google/appengine/api/users/User.html See the gwt expense

Help with resizing

2011-12-27 Thread Mike Dee
I can't get onResize() to be called on some of my panels. I'm using Activities and Places. The top level panel is a DockLayoutPanel. All of the activity happens in the center panel. The view I'm having trouble with looks like this. public class MyViewImpl extends ResizeComposite implements

Re: GWT Developer Plugin for Firefox 9

2011-12-27 Thread David Guo
Test in Win7 64 bit,work fine! -- 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/-/EoqyMP0nG2AJ. To post to this group, send email to

Re: gwt virtual keyboard

2011-12-27 Thread Kanagaraj M
There are 2 ways to do it. 1. Include the needed elements (keyboard, username, password, submit button) in a GWT Panel And add that panel to RootPanel Handle the button event 2. Put place holders in the login page As the sample project in eclipse does Handle the submit action in login

Re: TabLayoutPanel SelectionHandler invoked multiple times

2011-12-27 Thread Patrick Tucker
Where are you adding the SelectionHandler? On Dec 27, 7:47 am, ALB-PSP-DV1 albpsp...@gmail.com wrote: Hi, I have a TabLayoutPanel  with 3 tabs. I have added a selection handler to it to change the color of the selected/unselected tabs. However the selectionHandler seems to be invoked 3

Re: gwt virtual keyboard

2011-12-27 Thread Amrutha
Heii Kanagaraj, Thanks for your reply.I have added buttons in keyboard as images.Can you please tell me how can i get that particular button character in my username?How to code that in gwt? -- You received this message because you are subscribed to the Google Groups Google Web

Re: gwt virtual keyboard

2011-12-27 Thread Kanagaraj M
write a click event listener. Attach the listener to all the buttons. receive the event, find which button is clicked and add the respective character to text box -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on

Re: gwt virtual keyboard

2011-12-27 Thread Amrutha Thomas
Heii Kanagaraj, I have added the code like this Image image_1 = *new* Image(Images/1.png); image_1.addClickListener( *new* ClickListener() *public* *void* onClick(Widget sender){ textBox.setText(( 1 + sender.getTitle()); } }) ; this code is working but when i click on this button it

Re: Develop Web application

2011-12-27 Thread Z.A Jafari
cheers!! On 27 December 2011 14:36, Ed Bras post2edb...@gmail.com wrote: http://code.google.com/webtoolkit/doc/latest/tutorial/gettingstarted.html This is tutorial to build your first Hello world app. Download the SDK in the download section and in the zip you find all the sample/demo app

Re: gwt virtual keyboard

2011-12-27 Thread Kanagaraj M
You are overriding the values in the text box, you have to append with already existing value -- 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: gwt virtual keyboard

2011-12-27 Thread Amrutha Thomas
can you please show me how to code that?? On Wed, Dec 28, 2011 at 11:14 AM, Kanagaraj M kanagaraj@gmail.comwrote: You are overriding the values in the text box, you have to append with already existing value -- You received this message because you are subscribed to the Google

Re: gwt virtual keyboard

2011-12-27 Thread Kanagaraj M
textBox.setText( textBox.getText()+sender.getTitle()); I dont understand why you are adding 1. -- 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: TabLayoutPanel SelectionHandler invoked multiple times

2011-12-27 Thread ALB-PSP-DV1
I'm adding the selection handler to the TabLayoutPanel. fareDisplayPanel.addSelectionHandler(new SelectionHandlerInteger() { } On Dec 28, 8:56 am, Patrick Tucker tucker...@gmail.com wrote: Where are you adding theSelectionHandler? On Dec 27, 7:47 am, ALB-PSP-DV1 albpsp...@gmail.com wrote:

Re: gwt virtual keyboard

2011-12-27 Thread Amrutha Thomas
if 1 is not added how it works,bcoz I have added the keys as images On Wed, Dec 28, 2011 at 11:34 AM, Kanagaraj M kanagaraj@gmail.comwrote: textBox.setText( textBox.getText()+sender.getTitle()); I dont understand why you are adding 1. -- You received this message because you are

Re: gwt virtual keyboard

2011-12-27 Thread Kanagaraj M
yes. but you could have added different images. right? while adding the image, set the respective title as imageA.setTitle(A); imageB.setTitle(B) respectively and use textBox.setText( textBox.getText()+sender.getTitle()); -- You received this message because you are subscribed to the Google

Re: gwt virtual keyboard

2011-12-27 Thread Amrutha Thomas
ohhh I have forgotten that Thanks yaar On Wed, Dec 28, 2011 at 11:38 AM, Amrutha Thomas amrutha.tho...@gmail.comwrote: if 1 is not added how it works,bcoz I have added the keys as images On Wed, Dec 28, 2011 at 11:34 AM, Kanagaraj M kanagaraj@gmail.comwrote: textBox.setText(

Re: Popup Panels are always displayed behind the youtube iframe

2011-12-27 Thread George Simon K
I too had this issue. Opaque fixed. Thanks On Tue, Sep 20, 2011 at 12:33 AM, erebrus ereb...@gmail.com wrote: Thanks, that did it. On Sep 19, 2:47 pm, KevMo kevinps...@gmail.com wrote: Try adding wmode=Opaque to the end of the iFrame URL. On Sep 19, 1:16 am, erebrus ereb...@gmail.com

GWTP Code Splitting

2011-12-27 Thread Hardik Mishra
Hello All I am using GWTP (MVP framework by Google) with GWT 2.3. I want to use GWT code splitting with my presenters. I know about @ProxyCodeSplit annotation in Presenters. Like below @ProxyCodeSplit public interface MyProxy extends ProxyMainPagePresenter { } Is this sufficient ? Or Do I need

Re: Datagrid headers grouping?

2011-12-27 Thread John99
Tnak you for answer Jeff. Do you mean CellTableBuilder API? http://code.google.com/p/google-web-toolkit/source/detail?r=10476 -- 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: Help with resizing

2011-12-27 Thread Mike Dee
Played around with this a little more and came to a few conclusions. I am guessing that adding a ResizeHandler to SplitLayoutPanel has no effect because SplitLayoutPanel already implements onResize() - due to its implementing RequiresResize. I can see SplitLayoutPanel's onResize() being called by

[gwt-contrib] Add cursor: pointer for Hyperlink (issue1615808)

2011-12-27 Thread jlabanca
LGTM http://gwt-code-reviews.appspot.com/1615808/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Deal with null (but defined) localStorage and sessionStorage objects. (issue1615807)

2011-12-27 Thread pdr
On 2011/12/20 04:12:58, Jason Terk wrote: Thank you for the patch! I vaguely remember there being cross-browser issues with this approach, but I just tested IE9, IE7, FF3.6 and FF4 and things look good so far with your new approach. Modernizr even wraps this check in a try/catch, but I think