Re: how to make this mouse over effect?

2010-07-05 Thread cy dev
thanks so much! On 7月6日, 上午3時48分, Subhrajyoti Moitra wrote: > try this.. > > public class MyFlexTable extends FlexTable implements HasMouseOutHandlers, >         HasMouseOverHandlers { > >     public MyFlexTable() { >         super(); >         Button hiddenButton=new Button("I am hidden"); >    

UIBinder and SmartGWT 2.2 : how to get them working

2010-07-05 Thread anjan bacchu.dev
hi there, does anyone have a comment on what it takes to get UiBinder and SmartGWT 2.2 up and running ? We are using SmartGWT v 2.2 Tree and Grid Controls on top of GWT 2.03. Can someone suggest what techniques can be employed for both to play together ? We saw http://code.google.com/p/uibinding-

Re: How to get the row number of a flex table

2010-07-05 Thread aditya sanas
you can set buttons ID by the method getElement().setId(); you can set Id as row number and as whenever button get clicked you will have to check its id by getElement().getId() which is row number that we had set. -- Aditya On Mon, Jul 5, 2010 at 8:53 AM, Vik wrote: > Hie > > I have a table

Re: GWT printing on dot matrix printer

2010-07-05 Thread Günter Zöchbauer
Maybe you can share the printer in the network and print from the server. You then can open the printer like a file and write all control sequences as you like to the printer. (Works well on Windows, not sure about other systems.) On Jul 5, 7:52 pm, Sreeni wrote: > Currently we are working on a r

Re: xs linker does not support all GWT features?

2010-07-05 Thread Jay
Is there an issue in the issue tracker in regards to this? I would like to track when and if this fix makes it into a release, but couldn't find anything by searching on "xs linker" and "code splitting" On Jul 3, 12:31 pm, Brendan Kenny wrote: > Not sure if you meant to write just to me or repl

Re: Cross Site Linker & Code Splitting

2010-07-05 Thread Jay
Never mind, I just found this http://groups.google.com/group/google-web-toolkit/browse_thread/thread/625f9a771bf09b87# On Jul 6, 11:54 am, Jay wrote: > The Developer's Guide mentions that Code Splitting is not supported by > the cross site linker > > http://code.google.com/webtoolkit/doc/latest/

Cross Site Linker & Code Splitting

2010-07-05 Thread Jay
The Developer's Guide mentions that Code Splitting is not supported by the cross site linker http://code.google.com/webtoolkit/doc/latest/DevGuideCodeSplitting.html What are the technical reasons for this? Can we expect support for this in the Cross Site Linker soon? Thanks -- You received th

Re: GWT printing on dot matrix printer

2010-07-05 Thread dolcra...@gmail.com
What example? As far as I know it would be the browser and css (in addition to the printer driver) that would control the printing. Look into those three areas (browser, css, and driver). I think you may have a misunderstanding of what GWT is. On Jul 5, 1:52 pm, Sreeni wrote: > Currently we ar

Re: GWT-2.1 && java.util.logging

2010-07-05 Thread Jon Gorrono
I didn't read the blog yet, so sorry if this is repeat.. add log4j.properties and commons-logging.properties in the devel mode-only src tree at the root of the src directory (eg dev/src/java) in commons-logging.properties: org.apache.commons.logging.Log=org.apache.commons.logging.impl.Log4JLog

Re: need help on JSON request and response on UI only

2010-07-05 Thread Blessed Geek
On the server-side, I use com.google.gson.* On the client-side, I use com.google.gwt.core.client.JavaScriptObject; com.google.gwt.json.client.*; There are two modes to using these APIs. - Use GWT RPC to send Java structures back and forth. In this mode, you are blind to JSON and never need to eve

Re: GWT-2.1 && java.util.logging

2010-07-05 Thread Jeff Chimene
On 07/05/2010 02:48 PM, Thomas Broyer wrote: > > > On 4 juil, 15:19, james wrote: >> Last week I was trying to find a similar example and couldn't. So I >> took a little time an wrote a quick blog post with a small example app >> that should help you get started with logging. >> >> http://treaso

Re: Best practice to serialize a org.w3c.dom.Document over RPC?

2010-07-05 Thread Richard Kennard
Perfect! Thanks for the detailed and fast responses guys. Richard. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group, send email to go

Re: need help on JSON request and response on UI only

2010-07-05 Thread Thomas Broyer
On 5 juil, 17:09, sathya wrote: > I have a server model where, if we send JSON request, server replays > back with JSON response. Now I need to develop UI part for this > project using GWT (no need to develop server side as it has been > already developed).Can you please suggest me how I send and

Re: XMLParser Question

2010-07-05 Thread Thomas Broyer
On 5 juil, 19:17, fonghuangyee wrote: > StringBuffer xmlBfr = new StringBuffer(); > xmlBfr.append(""); > xmlBfr.append(""); > xmlBfr.append(""); > xmlBfr.append(""); > String xml = xmlBfr.toString(); > Document document = XMLParser.parse(xml); > Element element = document.getDocumentElement(); >

Re: Execute commands between RPC requests

2010-07-05 Thread Thomas Broyer
On 5 juil, 20:57, Bruno Santos wrote: > Is there any way to run a given command at the beginning and end of > any RPC request? You can provide an RpcRequestBuilder and either: - return your own RequestBuilder from doCreate(), which would override send() and setCallback() - do the "beginning c

Re: GWT-2.1 && java.util.logging

2010-07-05 Thread Thomas Broyer
On 4 juil, 15:19, james wrote: > Last week I was trying to find a similar example and couldn't. So I > took a little time an wrote a quick blog post with a small example app > that should help you get started with logging. > > http://treasonx.blogspot.com/2010/07/gwt-21-logging.html There's a s

Re: Url to my data for HTTP GET request?

2010-07-05 Thread Thomas Broyer
On 5 juil, 17:08, Nik wrote: > Hi, > I'm new with GWT nad trying to write a simple XML-parser in Eclipse > and really don't understand what url i have to use in my HTTP GET > request. > >         private void refreshtable() { > //      String url = "http://127.0.0.1:9997/rate.xml";; >         Re

Re: GWT 2.0.4 is now available

2010-07-05 Thread Thomas Broyer
On 4 juil, 16:55, Mikael Couzic wrote: > > I'm pretty sure the GWT group is not providing them because very > > few, if any, projects internally utilize maven. > > I do not agree. I use Maven, I believe many GWT projects use Maven, > and the GWT group should make the effort to manage GWT release

Re: Easily fixable: Issue 2892 Option Element warnings

2010-07-05 Thread Thomas Broyer
On 5 juil, 13:06, Jurriaan Mous wrote: > I would like to bring an old Issue 2892 to your attention. Some option > fields used as date selectors in our application keep outputting many > annoying warnings. Causing a 15 to 20 second wait before we could > continue on some views. Particularly year

Re: JSON Problem

2010-07-05 Thread Ahmed Shoeib
Thanks a lot My Friends it is easy way thanks for your support On Jul 5, 9:33 pm, André Moraes wrote: > The response comes async. > > When the response from the server arrives at the client the method > onResponseReceived in the RequestCallback object is called, if an > error hapens the the onEr

Re: iOS (iPhone/iPad) breaks the GWT spinner

2010-07-05 Thread Jim Douglas
This same basic issue breaks the SliderBar in iOS: http://google-web-toolkit-incubator.googlecode.com/svn/trunk/demo/SliderBar/index.html The SliderBar is affected by two different issues: (1) Click-and-hold on the slider image brings up that iOS image menu; and (2) Click-and-drag would be inter

Re: Role-based security and widget visualization

2010-07-05 Thread Ladislav Gazo
acris-security depends on some core modules and tries to be as separated as it is possible. It is designed to fit into (hopefully) any environment but currently we have integration with Spring Security only. Nevertheless we are open to any discussion regarding extensions. The client is built in ja

Re: I18N and dynamic texts

2010-07-05 Thread André Moraes
Well, You can create a class that wraps a JavaScriptObject which contains a Dictionary with your keys and values. And before starting your application you can make a HTTP Request to fetch the JSON data (or part of it). Than in the server-side your write some code that send the values from the da

Re: how to enable scrolling for app using DecoratedTabPanel?

2010-07-05 Thread Stefan Bachert
Hi Ingo, First of all, CSS(3) is a failed descriptive language. Inspite of its complexity it does not support some basic requirements of layout management. So you have to choose a layout which is possible with CSS. You can't define a layout and find out how to do it with CSS. I watched your video

Session/realising user login

2010-07-05 Thread rapsli
Hi I'm trying to build some kind of user login: Password & username form -> submit send RPC request to server. Server checks password and stores username in session. Then I have a timebased call, that checks the server (via RPC -> method is called isLoggedIn()) if the user is logged in. If not,

Re: No source code is available

2010-07-05 Thread Blessed Geek
It may be that you already know this but, the very important attitude to acquire before starting to use GWT is - GWT is not Java runtime, GWT is Javascript runtime - All GWT Java code is compiled to Javascript runtime - GWT is compiled to run on the browser client - Any Java code hoping to be used

Re: RPC - which exception types may be used???

2010-07-05 Thread andreas
>From what I know you can use any type of exception, but: - GWT needs to know the source (file) of the exception (it's either in an inherited module or in your 'client' code or what ever package you declared in your *.gwt.xml) - it needs to be serializable (implement Serializable and do not forget

Re: getting the current row count from the button

2010-07-05 Thread Merih
Hello all, I've created a new Vertical Panel and I've added it in East Edge. Than I put the FlexTable in the Vertical Panel. But I still didnt align it on right side. I still cant change the position.. :( private DockLayoutPanel p = new DockLayoutPanel(Unit.EM); private VerticalPanel vPanel =

I18N and dynamic texts

2010-07-05 Thread arjanDOTTYbroerATgmailDOTTYcom
Hi there, For a client i'm in search for a solution to I18N and dynamic texts. Could you help me out in finding the most suitable design strategy for this problem? The application has some texts like menu items, headers, introduction paragraphs and help texts. These texts should come from some dat

Re: how to make this mouse over effect?

2010-07-05 Thread Subhrajyoti Moitra
try this.. public class MyFlexTable extends FlexTable implements HasMouseOutHandlers, HasMouseOverHandlers { public MyFlexTable() { super(); Button hiddenButton=new Button("I am hidden"); hiddenButton.setVisible(false); setWidget(0, 0, new Hyperlink("So

Re: gradient background over multiple panels?

2010-07-05 Thread Ian Bambury
Don't make them something else. Transparent is the default. If you'd Googled *background transparent *and looked at the first result, you could have found that our for yourself. On 5 July 2010 20:22, Magnus wrote: > Hi, > > thanks! How can I make them transparent? > > Magnus > > -- > You rec

Re: gradient background over multiple panels?

2010-07-05 Thread Magnus
Hi, thanks! How can I make them transparent? Magnus -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group, send email to google-web-toolk

Re: No source code is available

2010-07-05 Thread Jaroslav Záruba
Seems like the gdata module should be referenced by in your module.gwt.xml. Is it? On Mon, Jul 5, 2010 at 1:33 PM, Lampard wrote: > I am trying to develop a front end using GWT. The data fetched from > the font end are ultimately passed to provision.java file used for the > provisioning Data as

Re: GWT 2.0.4 is now available

2010-07-05 Thread Mikael Couzic
> I'm pretty sure the GWT group is not providing them because very > few, if any, projects internally utilize maven. I do not agree. I use Maven, I believe many GWT projects use Maven, and the GWT group should make the effort to manage GWT releases on the Maven central repository. On 1 juil, 18:3

keyUp and keyDown use

2010-07-05 Thread edah yahna
hello group, I'm creating a document "viewer", the problem I'm facing is that : my keyDown and keyUp are unuseable, I can't use them to go up or down my page. I'm obliged to use the scrollBar. Does anybody has any idea what wrong? thanks. Yahna -- You received this message because you are subsc

GWT lifecycle

2010-07-05 Thread lam
Hi, I'm working with GWT and I have a couple of questions. I need to know the exact life cycle. How is the project created? How can you define what is changed into **.nocache.js? How can you add more than one .js file? Are all modules complied into one .js file? Thank you lam -- You received thi

Make a Banner rotator whit ClientBundle or Java Script Nativ, what do you recomended?

2010-07-05 Thread Jero
It is possible to insert multiple images with ClienteBundle and make a banner rotator? or make whit java script? Thanks Very much, Greetigs Jero. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-

Image Format Conversion + alternative to FileOutputStream

2010-07-05 Thread rohit jain
Hello, I firstly made a simple program that converted images to any of the desired format by user using JAI. Then i thought of trying similar stuff on GWT. As FileOutputStream idoes not work with GWT, i first tried to make a program where user can upload an image and then download it. Now i want t

Re: Installed Google plugin in Helios, but no sign of it

2010-07-05 Thread Kurt Mueller
I was in a tizzy for a bit when I had that same problem. Kurt Sent from my Droid Incredible. On Jul 4, 2010 4:08 PM, "Arve Knudsen" wrote: Thanks for the tip. The problem was of course that I didn't have permission to write to Eclipse's installation directory. Pretty silly of Eclipse not to co

GWT printing on dot matrix printer

2010-07-05 Thread Sreeni
Currently we are working on a requirement where we need to print on the dot matrix printer. We tried using an example exist in the forums, which is working fine on other printers than dot matrix? Can any one suggest me how do I approach on this? Thanks in advance. -- You received this message b

Google web toolkit libraries...

2010-07-05 Thread Mian
Hi, I like to have a look of libraries of Google Web Toolkit, can any one please guide me where can I download the libraries. I will highly appreciate. Thanks Mian. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, s

No source code is available

2010-07-05 Thread Lampard
I am trying to develop a front end using GWT. The data fetched from the font end are ultimately passed to provision.java file used for the provisioning Data as provided by Provisioning API of Google. Naturally to do the provisioning I need to import : import com.google.gdata.client.appsforyourdoma

Easily fixable: Issue 2892 Option Element warnings

2010-07-05 Thread Jurriaan Mous
I would like to bring an old Issue 2892 to your attention. Some option fields used as date selectors in our application keep outputting many annoying warnings. Causing a 15 to 20 second wait before we could continue on some views. Particularly year selection has a lot of years because they are for

Problem withdrag & resize

2010-07-05 Thread leeboy
Hello!, In my job I have to modify an application based on gwt 1.7.1, but I have a stupid (I think it´s really stupid thing) problem, but I don´t know how to solve it. My problem is the next: I have a vertical bar that resize two vertical layouts(with two horizontal layouts inside each one) in my

JSONP + parameter signature

2010-07-05 Thread Ghusse
Hi, As many other frameworks, on each JSONP request, GWT creates a new randomly named callback function. That's great, except when the web service (as Flickr) that you are requesting requires the sent parameters to be signed. As the callback function is passed as a parameter in the URL, the web s

Url to my data for HTTP GET request?

2010-07-05 Thread Nik
Hi, I'm new with GWT nad trying to write a simple XML-parser in Eclipse and really don't understand what url i have to use in my HTTP GET request. private void refreshtable() { // String url = "http://127.0.0.1:9997/rate.xml";; RequestBuilder builder = new RequestBuilder(Reque

Re: GWT-2.1 && java.util.logging

2010-07-05 Thread james
Last week I was trying to find a similar example and couldn't. So I took a little time an wrote a quick blog post with a small example app that should help you get started with logging. http://treasonx.blogspot.com/2010/07/gwt-21-logging.html On Jun 21, 3:21 pm, "jie...@gmail.com" wrote: > Does

Execute commands between RPC requests

2010-07-05 Thread Bruno Santos
Is there any way to run a given command at the beginning and end of any RPC request? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group,

Re: JSON Problem

2010-07-05 Thread André Moraes
The response comes async. When the response from the server arrives at the client the method onResponseReceived in the RequestCallback object is called, if an error hapens the the onErrormethod is called. The RequestCallback object is the second parameter in the sendRequest function call.

how to make this mouse over effect?

2010-07-05 Thread cy dev
i have a flextable where there an anchor link in cell(0,0), and there is a button in cell(0,1) which is invisible by default. how to make it such that, when mouse over the flextable, the button in cell(0,1) becomes visible; when mouse out the flextable, the button becomes invisible again? the dif

Re: Eclipse plugin suggestion

2010-07-05 Thread Robert Hanson
> This is right, what we really need is Google to open source the plugin, but they don't want to I wouldn't confuse "don't want to" with "not quite yet". >From the FAQ: http://code.google.com/eclipse/docs/faq.html Q:Is the Google Plugin for Eclipse open-source? A: Not yet. For the initial releas

Re: JSON Problem

2010-07-05 Thread Ahmed Shoeib
you told me how to send request from client to server now i want how yo get data from server to use it in client and the data in json On Jul 5, 8:12 pm, André Moraes wrote: > This code is quite simple > > The line: > >  re = rb.sendRequest("jsonrpc-call=" + JsonHelper.jsoToString(call), > new

XMLParser Question

2010-07-05 Thread fonghuangyee
StringBuffer xmlBfr = new StringBuffer(); xmlBfr.append(""); xmlBfr.append(""); xmlBfr.append(""); xmlBfr.append(""); String xml = xmlBfr.toString(); Document document = XMLParser.parse(xml); Element element = document.getDocumentElement(); NodeList layouts = element.getElementsByTagName("Layout");

Re: JSON Problem

2010-07-05 Thread André Moraes
This code is quite simple The line: re = rb.sendRequest("jsonrpc-call=" + JsonHelper.jsoToString(call), new RequestCallback() prepare a AJAX call to the server and make your javascript object to a string using JsonHelper.jsoToString. In ther server the json-string will be accessible by the para

Re: PushButton hover not always removed on mouse out

2010-07-05 Thread ChrisK
Yep, here you go. Not sure how this will come out in google groups. The below doesn't support everything PushButton supports but it was never suppose to. It was only supposed to fix the show stopper bug in our application which seems to be caused by GWT PushButtons using images to miss mouse out ev

RPC - which exception types may be used???

2010-07-05 Thread Magnus
Hi, I am trying to implement an RPC call that loads a record from a database: User loadUser (String nickname) throws Exception; I tried different Exception types: SQLException: results in mystic errors (not serializable) Exception: results in error "uncaught exception" at the service call Ille

Re: Can I deploy GWT application on server which doe sn’t have servelet container

2010-07-05 Thread Jaroslav Záruba
Yes, you can. You only have to insert the element with compiled module into your page. On Mon, Jul 5, 2010 at 5:12 PM, sathya wrote: > Can I deploy GWT application on web server which doesn’t have servelet > container? I have developed my GWT application which doesn’t have any > server componen

iOS (iPhone/iPad) breaks the GWT spinner

2010-07-05 Thread Jim Douglas
This isn't strictly a GWT question; it affects any JavaScript application deployed to iOS. Any time the user touches an image for a second or so, a popup menu appears with the options "Save Image" and "Copy". This is just a nuisance with simple button images, but it completely breaks the GWT spin

Re: PushButton hover not always removed on mouse out

2010-07-05 Thread ben fenster
can you please post your fix? On 28 יוני, 09:49, ChrisK wrote: > I've had to make my own image button and replace all instances > ofPushButtonwith it. It mimics thePushButtonbehaviour but doesn't > have this issue on the exact same page so I'm pretty sure this is an > issue withPushButton. > > O

Re: JSON Problem

2010-07-05 Thread Ahmed Shoeib
i want a simple example to describe it cause i need it as soon as possible On Jul 5, 6:18 pm, André Moraes wrote: >                         re = rb.sendRequest("jsonrpc-call=" + > JsonHelper.jsoToString(call), > new RequestCallback() { > >                                 @Override >          

Re: JSON Problem

2010-07-05 Thread André Moraes
re = rb.sendRequest("jsonrpc-call=" + JsonHelper.jsoToString(call), new RequestCallback() { @Override public void onResponseReceived(Request request, Response response) {

Can I deploy GWT application on server which doesn ’t have servelet container

2010-07-05 Thread sathya
Can I deploy GWT application on web server which doesn’t have servelet container? I have developed my GWT application which doesn’t have any server component. So can I compile and deploy on server which doesn’t support servelet container like apache. -- You received this message because you are s

How GWT-RPC handles polymorphic serialization?

2010-07-05 Thread André Moraes
The GWT has the standard GWT-RPC to make easier to create RPC calls and fetch data from the server, but this tool only works if we have Java on the server side. In my current project, the server side will be .NET based. So I wrote a JSON-RPC library which implements the JSON-RPC standard to provi

need help on JSON request and response on UI only

2010-07-05 Thread sathya
I have a server model where, if we send JSON request, server replays back with JSON response. Now I need to develop UI part for this project using GWT (no need to develop server side as it has been already developed).Can you please suggest me how I send and receive JSON data from GWT front end. To

Re: align the widgets in DocLayoutPanel

2010-07-05 Thread Merih
Hello all, I've created a new Vertical Panel and I've added it in East Edge. Than I put the FlexTable in the Vertical Panel. But I still didnt align it on right side. I still cant change the position.. :( private DockLayoutPanel p = new DockLayoutPanel(Unit.EM); private VerticalPanel vPanel = ne

How to put a CellTable into a fixed relative sized div?

2010-07-05 Thread jantekb
Hi! I'd like to put a CellTable into a fixed size div element, but my problem is that when the table's setData method is invoked, the table changes the size of the wrapper div element somehow, but only in the case when width and height is specified in percent. If I specify sizes in px, the result

JSON Problem

2010-07-05 Thread Ahmed Shoeib
Dear Friends , i face a problem when trying to send and receive json object between client and server in GWT application so i want a simple example that show me how to do this Thanks, ahmed shoeib -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit

Remove DecoratedTabPanel Margin

2010-07-05 Thread AgitoM
For a large application I am developing I am using a DecoratedTabPanel in a DecoratedTabPanel, to create the illusion of sub Tabs. However, the content of a tab has a white margin around it, which makes the tabPanel inside the tabPanel look rather ugly. How can I remove the white margin? I've bee

Re: how to enable scrolling for app using DecoratedTabPanel?

2010-07-05 Thread ingo
hello stefan, i could not solve the issue yet. i made a screencast showing my problem: http://www.youtube.com/watch?v=k_eqtePmbZY could anyone please have a quick look through the sourcecode and give me a hint about what i am missing here.. this is the entry point. http://code.google.com/p/honeycr

Re: GWTCanvas not working on IE6?

2010-07-05 Thread Muhammad Saifullah
the following url works in IE6, i tested in IETester software. pls check yourself. On Mon, Jul 5, 2010 at 6:07 PM, Kevin wrote: > Also, if you go to this demo link on IE6: > > > http://google-web-toolkit-incubator.googlecode.com/svn/trunk/demo/GWTCanvasDemo/GWTCanvasDemo.html > > nothing works,

Re: Best practice to serialize a org.w3c.dom.Document over RPC?

2010-07-05 Thread Harald Pehl
I agree with Thomas. XMLParser.parse(xmlString) uses the browsers xml parser which should be reasonable fast. If you want to further process the XML document (e.g. map it to POJOs) feel free to take a look at Piriti: http://code.google.com/p/piriti/. It's a little lib I wrote to map XML / JSON to

Re: GWTCanvas not working on IE6?

2010-07-05 Thread Kevin
Also, if you go to this demo link on IE6: http://google-web-toolkit-incubator.googlecode.com/svn/trunk/demo/GWTCanvasDemo/GWTCanvasDemo.html nothing works, even in quirks mode? On Jul 3, 10:07 am, Qian Qiao wrote: > On Sat, Jul 3, 2010 at 16:56, Muhammad Saifullah > > wrote: > > in IE how can

Re: Best practice to serialize a org.w3c.dom.Document over RPC?

2010-07-05 Thread Thomas Broyer
On 5 juil, 09:02, Richard Kennard wrote: > Hi guys, > > A (hopefully easy) question: what is the GWT 'best practice' to take a > server-side DOM built with org.w3c.dom.Document and pass it over RPC? > > Clearly once on the client-side it needs to become a > com.google.gwt.xml.client.Document, an

Re: GWTCanvas not working on IE6?

2010-07-05 Thread Kevin
Hi there, thanks for your reply. But I am sure I am in quirks mode as well. which version of GWT SDK are you using? Regards, Kevin On Jul 2, 7:39 pm, Flemming Boller wrote: > i use it on ie6. it works both in development and deploy mode. > > remember that in IE you must use quirks mode. in stri

Re: align the widgets in DocLayoutPanel

2010-07-05 Thread Merih
Hello Roliveria, Thanks, you right, p.addEast(sampleWidget,20); adds a new East edge every time. Is it a good way to add "panel" in East edge and than to add every new widget in the panel. so I add just one East edge using that way. Thanks On Jul 2, 4:51 pm, roliveira wrote: > Hi nasionalem, >

Best practice to serialize a org.w3c.dom.Document over RPC?

2010-07-05 Thread Richard Kennard
Hi guys, A (hopefully easy) question: what is the GWT 'best practice' to take a server-side DOM built with org.w3c.dom.Document and pass it over RPC? Clearly once on the client-side it needs to become a com.google.gwt.xml.client.Document, and I can achieve this by serializing to and from a String