Re: Suggestions with code design

2008-12-08 Thread alex.d
RPC doesn't and can't handle file uploads. AWT can't be used on the client side. You will to have to write a normal servlet, upload your images, return a combined image at the end. I've seen some nice flash multi-file- upload-widgets that you probably can use. On 7 Dez., 05:54, Rohan Redkar

Re: How to have a layered panel?

2008-12-08 Thread Suri
Thank Litty. But isn't there a way for GWT to be able to do this? I'm in the middle of a GWT project and what I'd like to be able to do is to create a panel that provides a semi-transparent like view of the underlying data, informing the user that the screen has been disabled. Is Lightbox etc the

Re: How to have a layered panel?

2008-12-08 Thread Litty Preeth
Well using GWT itself u can accomplish this there is no need for going for native JS. Plz see the below links... http://examples.roughian.com/#Tutorials~Panel_Fade http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/8e7f7027b290a70d/a349e4f4a5a66e14?pli=1 Good luck, Litty

GWT WITH SOAP.

2008-12-08 Thread prat
Hello, Can anyone tell how to use webservices(SOAP request SOAP response) with GWT client?? Thanks Prat --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

Re: Gwt + Html Templates

2008-12-08 Thread jake H
Ty a lot!!! I quite understand how to manipulate with elements etc, but I m little bit frustrated how can i implement this with DockPanel. menu.java --- public static DockPanel outer1 = new DockPanel(); public static final Images images = GWT.create(Images.class); public TopPanel

Re: Gwt + Html Templates

2008-12-08 Thread olivier FRESSE
Well in fact, the Dockpanel is useless in this case. All the layout is managed in the HTML page. It would be something like : *RootPanel.get(header).add(topPanel); RootPanel.get(left).add(new2); RootPanel.get(center).add(new1); * The main idea is to do all the layout stuff in the HTML page. By

Re: After leaving TextBox to a Button it takes second click to get ClickListener to work

2008-12-08 Thread Danny Goovaerts
I have a similar problem. I hve a FlexTable with a ClickListener. The FlexTable is down inside a set of nested Widgets (DeckPanel/Composite/ DeckPanel/AbsolutePanel/FlexTable). Sometimes, the ClickListener is called simply when I click a row in the table. In other situations, I need to click the

problem in getting window size in IE

2008-12-08 Thread Litty Preeth
Hi, I am having some issues in my GlassPanel. To fill the glass panel to fit in the whole document size (scrollable area) I am using the below method: *public* *class* GlassPanel *extends* PopupPanel { ... ... *private* *void* fillScreen() {

Re: Direct call a RemoteServiceServlet

2008-12-08 Thread gregor
Arul, you have already asked this question here: http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/545cf2dbe9a7e50e/01ca78af99d38a08#01ca78af99d38a08 Didi you not understand something in the reply, or did you have a a further question? regards gregor On Dec 8, 6:58 am,

Re: generating for all browsers

2008-12-08 Thread suk...@yahoo.com
when i check the generated code in ...\www\com.myapp.app\gwt\standard\images, i find only the ie6 folder with all the images. there is no folder for firefox and when i run my app in firefox, the rendering goes for a toss e.g. DecoratedStackPanel look pretty ugly

Re: How to use a GWT client to send messages to a JMS queue

2008-12-08 Thread mikedshaf...@gmail.com
Litty is correct, this is exactly how we are doing it in one of our applications. GWT-RPC between client and server, the server then manages the connection to a JMS queue. Keeping this separation has actually been better for us, as we recently retooled our queue technology (we moved away from

Re: Multiple Languages , Locale

2008-12-08 Thread Lothar Kimmeringer
jake H schrieb: I want to ask how can i change the default language. Add the line meta name=gwt:property content=locale=en to your HTML-file that is loaded by the browser. Change en to the default-language of your choice. And secondly if i can change the default language dynamically.

Re: GWT WITH SOAP.

2008-12-08 Thread skanberg
The easiest way is probably to let your server layer handle the SOAP request use RPC for communication between your GWT client and the server. For example, you make a GWT RPC request from your client, the GWT RPC server part are invoked and makes the SOAP request and you takes the SOAP response

Re: generating for all browsers

2008-12-08 Thread alex.d
About ...\www\com.myapp.app\gwt\standard\images: It's not really generated - just copied from your src folder and it's ok that there is only one ie6 folder there. About DecoratedStackPanel lookint pretty ugly: There are small layout differences in different browsers. And decorated panel have had

Re: GWT WITH SOAP.

2008-12-08 Thread [EMAIL PROTECTED]
2nd on Fredrik's solution...that's how we're doing it. GWT-RPC between client and the front edge of the server. The back edge of the server talks SOAP to the rest of our solution. I've tried SOAP down to the web client directly...it can be done...but it wasn't as easy as I thought it'd be.

Multiple Languages , Locale

2008-12-08 Thread jake H
Hello , i m playing these days with the locale and trying to import to my application more than one language. I successfully created the properties files etc , edit the xml file etc etc. I want to ask how can i change the default language. And secondly if i can change the default language

Re: Standard/Simple GWT CSS?

2008-12-08 Thread Miles T.
Hi David and tomato, We also didn't (and still don't) want to write HTML or CSS for our application (it aims to be an internal application, not a public website). Consider using Ext GWT, SmartGWT or GWT-Ext, I guess this is what you're looking for. These libraries provide a set of widgets and

gwt apps showing help as html with links...

2008-12-08 Thread [EMAIL PROTECTED]
I have read issues around showing html ( which has links ) in a gwt widget ( like HTML )... http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/70726d32d06ebbe6/ddae738fd27577bf?lnk=gstq=html+and+links#ddae738fd27577bf I know of 2 ways to control the links... 1. Manage the

Re: How can I hide the border of richtextarea?

2008-12-08 Thread lichking . zz
Thank you for your reply,but this way doesn't work. 2008/12/8 Litty Preeth [EMAIL PROTECTED] May be you should try DOM.setStyleAttribute(rta.getElement(), border, 0px); On Sun, Dec 7, 2008 at 3:12 PM, lichking.zz [EMAIL PROTECTED] wrote: Hi,all I try to hide the border by using:

Re: Standard/Simple GWT CSS?

2008-12-08 Thread jhulford
On Dec 7, 6:05 pm, David Hoffer [EMAIL PROTECTED] wrote: Thanks for stating the obvious, I hadn't seen that web site yet. Okay, I have a couple of CSS newbie questions. 1. What are calls like disabledButton.ensureDebugId(cwBasicButton-disabled) for? This isn't a Java like thing. 2. Where

Re: How to have a layered panel?

2008-12-08 Thread Isaac Truett
http://code.google.com/p/google-web-toolkit-incubator/wiki/GlassPanel On Sun, Dec 7, 2008 at 12:04 AM, Suri [EMAIL PROTECTED] wrote: Hey all, In GWT how would we create a layered panel/widget that basically acts like a semi-opaque screen for the stuff below it. Sort of looking like the

Generic serializable object

2008-12-08 Thread chris_wesdorp
Hi, I tried but did not succeed so maybe someone can help. Using GWT RPC for CRUD using serializable objects requires at least one or four methods per entity. If one method is used I can create a wrapper object like: public OrderAction { private String action; // get, create, update, delete

Re: Generic serializable object

2008-12-08 Thread Suri
Hi Chris, I think you would be able to serialize the generic class (which itself should implement Serializable and maybe that's why the error?) but also to keep in mind that the class types that you're expecting pass across should also be Serializable otherwise you'd run into a run time error.

Re: Suggestions with code design

2008-12-08 Thread rakesh wagh
gwt is not going to help you a lot here(Think in terms of html and js. If html and js cannot do, gwt can neither.). Did you check the recent javafx release? I think it is best suited for your work. At least the image manipulation part. On Dec 6, 10:54 pm, Rohan Redkar [EMAIL PROTECTED] wrote:

Re: Generic serializable object

2008-12-08 Thread Shawn Pearce
I don't think its possible The GWT compiler must know in advance the type of objects that can appear within the List entities so it can generate the serialization and deserialization JavaScript code. Likewise I doubt it can serialize a field of type Class, as the browser doesn't really have the

Re: How to have a layered panel?

2008-12-08 Thread rakesh wagh
if you are trying to do this on your own, you will probably need a absolute panel that is placed on the screen based on the screen size (0, 0, max clientx, max clienty). Select a proper style: color and transparency. Now just put your widget or popup on top of this panel. This way the z index of

Re: Generic serializable object

2008-12-08 Thread gregor
You read about this issue in these two posts: http://groups.google.com/group/Google-Web-Toolkit-Contributors/browse_thread/thread/25d151960b48b5c4

Re: GWT 1.5 on JDK 1.4

2008-12-08 Thread Tim
java 1.4 end-of-lifed in October 2008 (http://java.sun.com/j2se/ 1.4.2/) - probably time to upgrade to at least 1.5 (or may be even 1.6, which has been out for 2 years) On Dec 8, 6:07 am, kilkenny [EMAIL PROTECTED] wrote: Hi Since GWT 1.5 relies on Java 5 language feature you need a JDK 1.5

GWT event model

2008-12-08 Thread Mike
Hi all, Today i was browsing the latest source code for GWT and i saw that many event-related classes have been deprecated. (E.g. CLickListener and SourcesClickEvents.) Is a major refactoring of the event mechanism forthcoming? (I was trying to figure out how the GWT event model works, i.e. i

Re: Problem updating image URL

2008-12-08 Thread jchimene
Hi, I've had mixed success using seturl; in fact I don't think it works at all w/ IE6. Instead, I deleted the existing DOM node and recreated it with a new image. I first noticed this in a simple Fisheye widget. The basic structure is ulliimgspan/li/ul. To replace the img on a mouseover

Re: how to refresh panel

2008-12-08 Thread rajasekhar
Hi Preeth, Thank you so much Preeth it is working now.I passed borderlayout panel and centerpanel to the leftside class,centerpanel is cleared and added new panel to borderlayout panel. (borderlayout ) called parent.doLayout() statement. Regards, Rajasekhar

Re: URL that is launced in Hosted Mode

2008-12-08 Thread Jason Essington
does GWT.getHostPageBaseURL() help you out any? -jason On Dec 6, 2008, at 3:50 PM, funwithgwt wrote: Hi, Question 1: My URL in hosted mode looks like this: http://localhost:/com.mywebsite.MyBlog/MyBlog.html I would like the application to be launced in hosted mode so that it looks

Re: JDBC/MySQL Driver error

2008-12-08 Thread Jason Essington
select: Run - Build Configurations Then pick you launcher from the list on the left select the classpath tab, and add your required jar there Of course JDBC drivers only work on the server side, and not in client code. -jason On Dec 2, 2008, at 12:58 PM, [EMAIL PROTECTED] wrote: Thanks

Re: Does GWT RPC use HTTP?

2008-12-08 Thread Jason Essington
GWT-RPC uses the browsers XMLHTTPRequest mechanism. As such, it is required to use the same protocol and port used to load your host page (to avoid running afoul of the Same Origin Policy). So, if your host page is loaded via HTTP port 80 the RPC uses HTTP port 80 ... if you are in hosted

Re: GWT event model

2008-12-08 Thread David H. Cook
I'll shoot from the hip and GUESS that the reason MIGHT be that (hopefully) someone is fixing what I currently think is a MAJOR flaw in the whole design/implementation of events in GWT. If I'm correct (that there really IS a flaw), it's that there needs to be the concept of 'addEventListener' to

Re: GWT WITH SOAP.

2008-12-08 Thread prat
Thanks alot :) On Dec 8, 2:33 am, Lothar Kimmeringer [EMAIL PROTECTED] wrote: prat schrieb: Can anyone tell how to use webservices(SOAP request SOAP response) with GWT client?? Personally I would go with Fredik's suggestion (he was just faster than me answering here ;-) If you really

Re: GWT WITH SOAP.

2008-12-08 Thread prat
Thanks alot :) On Dec 8, 4:59 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: 2nd on Fredrik's solution...that's how we're doing it.  GWT-RPC between client and the front edge of the server.  The back edge of the server talks SOAP to the rest of our solution.  I've tried SOAP down to the web

save content locally

2008-12-08 Thread MAK
Hi, I have created a gwt application to add some items, then the application adds the name of the items to a string at client side. If a user wants to save the string, how is possible to save that information locally in GWT (i.e., into a file -- user selects some path from a dialogbox). Have

Hello Everybody - need help with an GWT interface

2008-12-08 Thread Thib'z
Hello everybody, I'm a beginner with GWT and JavaScript, and I would like to create a simple interface, with a TabPanel, including 3 tabs, and each one including 3 groups of 7 ChekBoxes(Led Controllers), and a Button per Tab. But I having a little trouble declaring the Checkboxes, and including

Test management system integrated with JIRA and Bugzilla

2008-12-08 Thread sean
Hello Everyone, Zephyr, which has revolutionized the IT scene, is now making quite a stir with the release of Zephyr 2.0, which features comprehensive, two- way integration with the popular defect tracking systems JIRA and Bugzilla via Web services. Zephyr 2.0 allows interoperability with

Left or Right arrow Key press doesn't work for Textbox inside a TreeItem in GWT 1.5

2008-12-08 Thread Ravi
Hi, I have tree with some tree items each of which hosts a textbox widget. Everytime i press a left or right arrow key (KEY_LEFT / KEY_RIGHT) inside the textbox within a treeitem, instead of the cursor moving to the right or left of the current cursor position, the parent tree node gets selected

Re: There is a bug in CellPanel.java

2008-12-08 Thread David H. Cook
I'm just guessing and shooting from the hip, but your problem is probably not a bug. I've only been coding GWT for about a week now, but have found that I must really read the docs carefully and think globally, when it comes to stuff relating to 'styles' and stuff that is also controlled by .CSS

Re: Please Please stop sending me emails.

2008-12-08 Thread Sumit Chandel
Hi Agnes, I tried looking up your username in the Groups to try and unsubscribe you from the list on our side, but couldn't find your user id. Did you manage to unsubscribe yourself from the list? Thanks, -Sumit Chandel On Sun, Dec 7, 2008 at 1:01 PM, agnes Laffitte [EMAIL PROTECTED]wrote: I

Re: There is a bug in CellPanel.java

2008-12-08 Thread Ian Bambury
You can't set the size of the cell that 'b' is in before you add 'b' to a cell. v.setCellWidth(b, 100px); v.add(b); Ian http://examples.roughian.com 2008/12/8 wurenhai [EMAIL PROTECTED] Let's read the following code: ==CellPanel.java=== /** * Sets the height of the cell

Re: Please Please stop sending me emails.

2008-12-08 Thread Lothar Kimmeringer
agnes Laffitte schrieb: I want to remove myself from this mailing list but I clicked unsubscribe but it says that I don't have permission to do so. How do I remove myself from this group so that I don't receive tons of emails per day. At the end of every mail is a description how to do that

Re: save content locally

2008-12-08 Thread Lothar Kimmeringer
MAK schrieb: I have created a gwt application to add some items, then the application adds the name of the items to a string at client side. If a user wants to save the string, how is possible to save that information locally in GWT (i.e., into a file -- user selects some path from a

Re: save content locally

2008-12-08 Thread olivier FRESSE
If you really, really need to access to the client side, you can use an applet (signed ! same restrictions regarding the client access...) There is a GWT/APplet integration project at http://code.google.com/p/gwtai/ I've never tried with GWT, but I've already made this kind of thing with pure

Re: GWT event model

2008-12-08 Thread Adam T
It's for the version 1.6 event system: http://code.google.com/p/google-web-toolkit-incubator/wiki/ProposedEventSystem //Adam On 8 Dec, 17:06, Mike [EMAIL PROTECTED] wrote: Hi all, Today i was browsing the latest source code for GWT and i saw that many event-related classes have been

read token value in server side

2008-12-08 Thread Michael W
Is there a way to read history token in server side? For example, the URL is http://www.mycompany/en/us/reservation#roomrate I would like to get the token of roomrate in server side. Sound like we could not do that based on my knowledge and post in the internet. Just want to double check.

Re: How to have a layered panel?

2008-12-08 Thread rakesh wagh
Correction to my earlier post: Use PopupPanel, not AbsolutePanel. I just tried this code in a class that extends DialogBox: @Override public void show() { mask.setPixelSize(Window.getClientWidth(), Window.getClientHeight ());

Re: javascript setTimeout method isnt working

2008-12-08 Thread Thomas Broyer
On 8 déc, 06:49, Daniel Kurka [EMAIL PROTECTED] wrote: Try this instead: public static native void repeatTime() /*-{ bla = @com.google.gwt.client.myreminders::testtry()(); To get a reference to the method (method pointer), remove the last pair of parens (the first pair is part of the

Re: Suggestions with code design

2008-12-08 Thread Thomas Broyer
On 7 déc, 05:54, Rohan Redkar [EMAIL PROTECTED] wrote: Hi everyone, My application requires the user to select a bunch of images from his system. Then I need to do modifications on these images(example aline them horizontally into a single image). I need some design suggestions on how I

Re: Size of code download in GWT

2008-12-08 Thread Thomas Broyer
On 7 déc, 00:07, funwithgwt [EMAIL PROTECTED] wrote: Hi, I have a question about the size of downloaded code for GWT applications. I notice that the Modlename.js file that is included in the ModuleName.html file is quite small. I am looking at 5K approx. However the generated html files,

Re: GWT WITH SOAP.

2008-12-08 Thread Jason Essington
The assumption was that you wanted to communicate to a different server (than your GWT module came from) via SOAP, which is particularly difficult to do with a web browser due to Same Origin Policy. which would require GWT - rpc to your server - SOAP to remote server However if you are

Re: extGWT and maps

2008-12-08 Thread Eric Ayers
Hi rizla, Have you tried using the MapWidget.checkResize() on the map after you pop it up? Another trick that sometimes helps with this problem is to wrap your map in a VerticalPanel. -Eric. On Mon, Dec 8, 2008 at 3:37 PM, rizla [EMAIL PROTECTED] wrote: Hi to all I've a little problem

Re: How to have a layered panel?

2008-12-08 Thread Suri
Hi Rakesh, Isaac Litty Thanks for the replies. Since I'm currently already using the incubator jar for a table, I'll first attempt Isaac's suggestion which seems least effort-consuming at the moment. If i do need to create my own panel, I'll try both of your suggestions and update everyone on

Question about the Same-Origin policy

2008-12-08 Thread [EMAIL PROTECTED]
I know this policy will not allow you to communicate with services that are not in the same domain as your GWT app. I was wondering, however, if you have the JavaScript/GWT application and its subsequent services hosted on one domain, but link to the JS/GWT script on another domain entirely? For

Re: Annoying issue, integrating with Hibernate

2008-12-08 Thread Greg
I do the same exact trick, but I convert a PersistentBag to an ArrayList. The tricky part is figuring out where to put your copy code so that it doesn't get in the way or complicate your existing code. I use a custom field serializer, which is an undocumented feature of GWT. If you have an

Re: setHorizonalAlignment doesn't do it now (fineprint)

2008-12-08 Thread David H. Cook
it's just hp.setCellHorizontalAlignment(button, HasAlignment.ALIGN_CENTER); Ah, that compiled cleanly now...thanks! You must stay REALLY busy, between posts here, email, and your new email-based newbie-class. Do you have help on your website, or are you doing it all by yourself? On Dec 8,

Re: Question about the Same-Origin policy

2008-12-08 Thread Jason Essington
SOP says that XHRs can only connect to the domain that the host page was loaded from. So, of you have http://www.domain1.com/gwt-app/SomePage.html it doesn't matter where that page gets the GWT module from script type=text/javascript

Re: setHorizonalAlignment doesn't do it now (fineprint)

2008-12-08 Thread Ian Bambury
No, it's just me. In Eclipse, when you get to the HasAlignment.ALIGN_XX bit, if you haven't discovered this, type 'hasa' (no quotes) then press CTRL+Space, press enter to accept 'HasAlignment', press '.' to get the options, then use the arrow keys and press enter to accept the alignment. That

Re: Images, and 'public' locations?

2008-12-08 Thread David Hoffer
Hi Michel, Yes, I'm interested in seeing your code example. I didn't know you could send image bytes to the client. Thanks, -Dave On Mon, Dec 8, 2008 at 1:55 PM, Michel [EMAIL PROTECTED] wrote: Hi, I store the uploaded image in the database as a Blob, and then point the client to a plain

Re: read token value in server side

2008-12-08 Thread Shawn Pearce
No, it cannot be read at the server. Browsers do not send the anchor token in the request. The only way to read it at the server is to use GWT to read the history token on the client, then issue an RPC to the server that includes the token as a method parameter. On Mon, Dec 8, 2008 at 10:29,

Re: setHorizonalAlignment doesn't do it now (fineprint)

2008-12-08 Thread David H. Cook
Yeah, thanks, I've figured out some of that Eclipse stuff, and I saw the nice summary of Eclipse cmds on your website. The Eclipse IDE is probably the nicest one out there, tho NetBeans is a close 2nd...I've used it in the past, and the support for stuff like tomcat/apache/MySQL/etc is neat.

Re: Populating the the GWT form in Java object

2008-12-08 Thread Sumit Chandel
Hi Yakub, It's difficult to map a framework like Struts to full Ajax application development because of the major differences between the location where the control flow logic is run (server versus client). In full Ajax applications, the control flow logic happens on the client through JavaScript

Re: BeanMapping class

2008-12-08 Thread Sumit Chandel
Hi Smith, I'm not sure what BeanMapping class you're referring to, but a good library for copying and mapping one Java bean to another is the Dozer library (link below). Dozer: http://dozer.sourceforge.net/ Dozer is open source. You can read up on the license and its terms at the link provided.

Re: How to add expandable table row using gwt-ext

2008-12-08 Thread Sumit Chandel
Hi Cris, I think you would have better luck posting up about the issue on the GWT-Ext forums (link below). The GWT-Ext support forum would have more developers who are familiar with the GWT-Ext specific components and code customizations. http://groups.google.com/group/gwt-ext Hope that helps,

Re: GWTShell and facelet.

2008-12-08 Thread Sumit Chandel
Hi Olivier, Can you double-check to make sure that you're not using an empty script tag to reference your GWT bootstrap script? I..e, script src=com.google.app.MyModule.nocache.js / versus script src=com.google.app.MyModule.nocache.js/script? The empty script tag has been known to cause issues in

Re: Popup center problem

2008-12-08 Thread Sumit Chandel
Hi Rimimi, You could either prefetch the image, or bundle the image in an ImageBundle. This way the image size is already computed into the page as a clear.cache.gif placeholder until the ImageBundle is fully downloaded and the image can be cut out and placed in the placeholder position. The size

Re: Recover html elements from GWT?

2008-12-08 Thread Sumit Chandel
Hi markww, There isn't a way to instantiate a Java object directly from a div element, but you can wrap the div in a Composite class that represents the div and make associative changes be reflected through DOM.getElementAttribute()/setElementAttribute(). Hope that helps, -Sumit Chandel On Fri,

Rpc Not found on gwt-ext

2008-12-08 Thread Mettle Technologies
Hi all, I need help . My application http://www.rnpolymer.com/welcomeGWT.html is not finding the rpc if you open it one firefox with firebug you can able to see the error. I tried three four hosting server but every where same problem though my application is running fine on localhost. There is

XML and SOP

2008-12-08 Thread Ryan
Hello, I am trying to access an XML feed via a URL request of an external server, but of course am restricted by the browser SOP. So I tried to follow the example given in the Getting Started guide for getting around SOP on a JSON request, Get JSON via HTTP, hoping to adapt it for XML. But it's

Expandable rows in GWT ext table grid

2008-12-08 Thread Cris
Hi Can any help me in how to create an expandable rows using gwt ext. (i.e. on click on an icon the entire table row should be expanded ). Thanks in advance Krish --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: problem in getting window size in IE

2008-12-08 Thread Litty Preeth
Yes ofcourse. my glass panel popup has a SimplePanel inside it. So when I set the size of the popup... it will set the size of this simplepanel GlassPanel is nothing but a semi transperant layer, which comes underneath a modal popup to show the user that the below panel is disabled.

how to display one by one panel in borderlayout panel

2008-12-08 Thread rajasekhar
Hi All, how to display one by one panel in borderlayout panel,In my case borderlayout panel is divided into north,west,center,east,south panels.First I need to display north panel after displaying north ,need to display west ,center,east,south panels . Right now the entire panel is

Re: XML and SOP

2008-12-08 Thread Adam T
This technique only works for JSON that is returned as a valid JavaScript function, it will not work for XML. It relies on the fact that the returned JavaScript expression is evaluated by the browser and thus your handle function is called. Without that, your handle function can never be called

Re: how to display one by one panel in borderlayout panel

2008-12-08 Thread Adam T
I would either: a) subclass the panel you want, b) override the add method to store the widgets added into a structure rather than directly in the panel, c) override the onAttach method so that once the panel is attached it starts adding the stored widgets as required using a Timer class to

Re: how to display one by one panel in borderlayout panel

2008-12-08 Thread rajasekhar
Hi Adam, Thank you for reply.I getting confused with onAttach function ,let me know this function belogs to which class.Can you expain me with small example please. Regards, Rajasekhar --~--~-~--~~~---~--~~ You received this message because you are

Re: How can I hide the border of richtextarea?

2008-12-08 Thread Litty Preeth
But for me its working... Do u have any CSS styles associated with the richtextbox?? Which browser did u try on? I tried on firefox... Also on IE the text boxes and text areas have a native border (gray inset border), I think we cant remove that one. If you want to get consistent look n feel on

Re: How can I hide the border of richtextarea?

2008-12-08 Thread Danny Schimke
Also on IE the text boxes and text areas have a native border (gray inset border), I think we cant remove that one I think so too! It would be nice if there is a way to set IE's frameborder to zero... I extended my own frame from GWT's frame with a method that sets the border: public void

Re: Generic serializable object

2008-12-08 Thread chris_wesdorp
Hi Siru,gregor, The classes which are transferred via RPC in the CrudAction are serializable by themselves (I have tested this). The javascript generator can determine which types will be serialized as in the code using the CrudAction the type will be defined, as CrudActionOrder. I just read the

Possible to influence event priority?

2008-12-08 Thread Danny Schimke
Hello! I have a SuggestBox with some event listeners. In example onChange and onSuggestionSelected. There are several things to be done. In my case onChange is fired before onSuggestionSelected. It would be nice if I could execute onSuggestionSelected before onCahnge is calling. Is it possible to

[gwt-contrib] [google-web-toolkit] jieryn commented on revision r3853.

2008-12-08 Thread codesite-noreply
[google-web-toolkit] jieryn commented on revision r3853. Details are at http://code.google.com/p/google-web-toolkit/source/detail?r=3853 Score: Neutral General Comment: Was it your intention to expose this map with default? I think it should be private protected.

[gwt-contrib] Re: Ideas for simple but immediately-useful bits of data for SOYC

2008-12-08 Thread Lex Spoon
This kind of data is very valuable for sure. I not sure how much it makes sense to record on a regular basis, though. It's already pretty easy to modify the compiler to get these statistics whenever a developer needs them, and I've done so for several of them in the past. It only takes a few

[gwt-contrib] Re: RR: put runAsync deferred JS files into a subdirectory

2008-12-08 Thread Lex Spoon
On Fri, Dec 5, 2008 at 11:02 PM, Bruce Johnson [EMAIL PROTECTED] wrote: Possible dumb point, but do you prefix-pad the fragments with '0' where necessary? For some reason it's so aesthetically yucky to see things mis-sorted on the command-line like this: 1.nocache.js 10.nocache.js

[gwt-contrib] Re: Ideas for simple but immediately-useful bits of data for SOYC

2008-12-08 Thread Katharina Probst
Further, Java profilers are quite effective. If you just run the compiler or hosted mode under JProfiler, you get a great overall view of where the time is going, and further you can drill into the data to get more specific information. Agreed, JProfiler gives lots of interesting info,

[gwt-contrib] Safari/Chrome FocusPanel inside ScrollPanel

2008-12-08 Thread Paul Robinson
I have found what I think is a bug in the interaction between FocusPanel and ScrollPanel on Safari and Chrome. What I'm seeing is that when you create a FocusPanel and put it inside a ScrollPanel, clicking inside the focus panel cause the scroll panel to scroll to the top. I think that what's

[gwt-contrib] Add NativePreviewEvent to replace current EventPreview system

2008-12-08 Thread jlabanca
Reviewers: ecc, Description: The new NativePreviewEvent and NativePreviewHandler replaces the old EventPreview system. Instead of firing only one EventPreview at the top of the stack, we now fire all NativePreventHandlers. The PopupPanel, DialogBox, MenuBar, and code museum code has been

[gwt-contrib] review: patch for ListenerWrapper.Tree's handle of open

2008-12-08 Thread Freeland Abbott
I think this was just a typo... --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~--- treeopen.r4264.patch Description: Binary data

Re: RR: CssResourceGenerator patch for GWT compiler bug (was Re: [gwt-contrib] Re: Very Strange Compiler Bug: Works in JDK1.5, fails in 1.6)

2008-12-08 Thread Ray Cromwell
Should I just commit this without review, or does anyone want to review it? -Ray On Sat, Dec 6, 2008 at 9:32 PM, Ray Cromwell [EMAIL PROTECTED] wrote: Ok, this has become a pressing issue for me, a number of Chronoscope users are either unwilling or unable to use -Xss to work around the

[gwt-contrib] Re: code review: issues_3166_3167_gwt16_r4353.patch

2008-12-08 Thread jgw
For reasons not clear to me, I can't seem to add an updated patch set. I'll send it to the gwt-contrib thread and hope you can do it :) http://codereview.appspot.com/8894/diff/1/9 File user/src/com/google/gwt/user/client/Event.java (right):

Re: RR: CssResourceGenerator patch for GWT compiler bug (was Re: [gwt-contrib] Re: Very Strange Compiler Bug: Works in JDK1.5, fails in 1.6)

2008-12-08 Thread Scott Blum
On Mon, Dec 8, 2008 at 3:41 PM, Ray Cromwell [EMAIL PROTECTED] wrote: Should I just commit this without review, or does anyone want to review it? I asked Lex if he could take a look. But I thought this was for GWT itself rather than incubator?

[gwt-contrib] [google-web-toolkit commit] r4266 - trunk/user/src/com/google/gwt/user/client/ui

2008-12-08 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Mon Dec 8 12:56:35 2008 New Revision: 4266 Modified: trunk/user/src/com/google/gwt/user/client/ui/ListenerWrapper.java Log: typo correction; the ListenerWrapper for Trees should fire a StateChange rather than Selection for node open. (Node close was

[gwt-contrib] getAbsoluteLeft/Top() returns incorrect value in IE when zoomed in

2008-12-08 Thread jlabanca
Reviewers: ecc, Description: Description: Issue 3172 reports that sub menus do not line up with the ManuBar in IE when zoomed in: http://code.google.com/p/google-web-toolkit/issues/detail?id=3172 This is actually a much deeper issue where getAbsoluteLeft/Top() return incorrect

[gwt-contrib] Fwd: review: shouldn't soyc-vis handle compression?

2008-12-08 Thread Freeland Abbott
Since we generate compressed output, wouldn't it be nice to handle it as input? (We don't seem to need any of the reports but report0.xml[.gz], so it's just the one stream insertion.) --~--~-~--~~~---~--~~

[gwt-contrib] Re: Ideas for simple but immediately-useful bits of data for SOYC

2008-12-08 Thread Bruce Johnson
The way describes is summarizes my perspective, too. On Mon, Dec 8, 2008 at 2:15 PM, Toby Reyelts [EMAIL PROTECTED] wrote: There are a lot of ways that you can tweak JProfiler to make it run faster, depending upon the statistics that you're trying to collect. This is particularly true for CPU

[gwt-contrib] Re: Problem with certain failure cases in GWTTestCase

2008-12-08 Thread Joel Webber
Actually, we can make this a lot easier by just going to the issue that Ray set up here: http://codereview.appspot.com/8894 If you could comment on the junit changes, that would be great. On Thu, Dec 4, 2008 at 4:40 PM, Joel Webber [EMAIL PROTECTED] wrote: I've added tests to cover all the

[gwt-contrib] Re: review: shouldn't soyc-vis handle compression?

2008-12-08 Thread Katharina Probst
LGTM. Thanks, Freeland! kathrin On Mon, Dec 8, 2008 at 3:59 PM, Freeland Abbott [EMAIL PROTECTED] wrote: Since we generate compressed output, wouldn't it be nice to handle it as input? (We don't seem to need any of the reports but report0.xml[.gz], so it's just the one stream insertion.)

[gwt-contrib] Re: code review: issues_3166_3167_gwt16_r4353.patch

2008-12-08 Thread Ray Ryan
LGTM Rietveld can't show inter-diff diffs, so I can't see, say, your version 1 and comments on the left and the new patch on the right. That's a shame. rjrjr On Tue, Dec 9, 2008 at 7:50 AM, Joel Webber [EMAIL PROTECTED] wrote: Don't know why I can't attach another patch set to that codereview

Re: RR: CssResourceGenerator patch for GWT compiler bug (was Re: [gwt-contrib] Re: Very Strange Compiler Bug: Works in JDK1.5, fails in 1.6)

2008-12-08 Thread Ray Cromwell
Thanks Bob. -Ray On Mon, Dec 8, 2008 at 1:51 PM, BobV [EMAIL PROTECTED] wrote: Committed at r1285 with style and comment fixes. -- Bob Vawter Google Web Toolkit Team --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors

  1   2   >