Re: Set the title attribute of option elements in ListBox

2010-01-12 Thread Ashar Lohmar
import com.google.gwt.dom.client.Element; ... String title = some title ListBox listbox= new Listbox(); int index = 0; ... Element.as(listbox.getElement().getChild(index)).setTitle(title) i think that should do it On Jan 11, 5:20 pm, rmuller rmul...@xiam.nl wrote: Using the standard GWT API

Re: DockLayoutPanel inside a FormPanel

2010-01-12 Thread julien.dram...@gmail.com
the divs are created by GWT... It's the html code corresponding to a docklayoutpanel. On Jan 12, 1:52 am, UJ upendra.jar...@gmail.com wrote: Hi, Can you try using td/tr (table) as we do in the hello world example instead of using DIV? I am not sure but there might be integration issues in

Re: DockLayoutPanel inside a FormPanel

2010-01-12 Thread Thomas Broyer
On Jan 11, 6:56 pm, julien.dram...@gmail.com julien.dram...@gmail.com wrote: Hello all, I try to do something like that in a ui.ml file : !DOCTYPE ui:UiBinder SYSTEM http://dl.google.com/gwt/DTD/xhtml.ent; ui:UiBinder xmlns:ui=urn:ui:com.google.gwt.uibinder        

Line 37: No source code is available for type com.google.code.gwt.geolocation.client.Geolocation; did you forget to inherit a required module?

2010-01-12 Thread QterMgnus
I am trying to run HelloGeolocation from http://code.google.com/p/gwt-mobile-webkit/ then I just add HelloGeolocation class to an exsisting project in this line Label providerLabel = new Label(Geolocation provider: + Geolocation.getProviderName()); I also get error that

Re: RichTextArea Entities

2010-01-12 Thread Martin Trummer
I just wonder, why you would want to do that? what's wrong with the unicode chars? On 11 Jan., 20:03, DCYorke d...@yorkemail.org wrote: When setting HTML to a RichTextArea, some HTML entities are converted to unicode. For instance, laquo; is converted to «, copy; is converted to © and so

Re: DockLayoutPanel inside a FormPanel

2010-01-12 Thread julien.dram...@gmail.com
thanks! I specified a height To my dock layout panel and it's working fine. On 12 jan, 11:21, Thomas Broyer t.bro...@gmail.com wrote: On Jan 11, 6:56 pm, julien.dram...@gmail.com julien.dram...@gmail.com wrote: Hello all, I try to do something like that in a ui.ml file : !DOCTYPE

Re: Seeking freelance GWT developer for a web app prototype

2010-01-12 Thread Vasem Want
you have already send a message to all so now you can share with all and interested peop will revert back cheers vasem On Mon, Jan 11, 2010 at 9:58 PM, dbakerweb dbaker...@gmail.com wrote: We have an RFP for a number of web apps to demonstrate data reuse and interoperability based on our

Re: DockLayoutPanel sample code

2010-01-12 Thread Stine
I have the same problem :( -- 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

Open Dialog Box

2010-01-12 Thread Juan M.M.M.
Hi everybody! What I want to do is make up a button that will be open an dialog box to select a file of my hard disk. This is the first time I am using GWT 2.0 framework but is so strange that this platform doesn't has the tipical OpenFileDialog class. Someone knows something about this? Best

Re: Open Dialog Box

2010-01-12 Thread Abdullah Shaikh
You need to use FileUpload - Abdullah On Tue, Jan 12, 2010 at 4:27 PM, Juan M.M.M. knn0n@gmail.com wrote: Hi everybody! What I want to do is make up a button that will be open an dialog box to select a file of my hard disk. This is the first time I am using GWT 2.0 framework but is so

Re: MultiWordSuggestOracle and HTML display

2010-01-12 Thread Fazeel Kazi
Two changes will be needed: . CollectionSuggestion defaults = new ArrayListSuggestion(); . . defaults.add(new MultiWordSuggestOracle.MultiWordSuggestion(Something, ht)); . On 1/11/10, Amos Sam amos...@gmail.com wrote: I've been searching for solution for my problem, but i'm

Re: Read-only RichTextArea?

2010-01-12 Thread Manuel Carrasco Moñino
You can try setting on/off the iframe designMode attribute , something like this. RichTextArea area = new RichTextArea(); setEnabled(area.getElement(), false); native void setEnabled(Element iframe, boolean b) /*-{ iframe.contentWindow.document.designMode = b ? 'On' : 'Off';

Re: Open Dialog Box

2010-01-12 Thread Juan M.M.M.
Thanks!!! On 12 ene, 12:02, Abdullah Shaikh abdullah.shaik...@gmail.com wrote: You need to use FileUpload - Abdullah On Tue, Jan 12, 2010 at 4:27 PM, Juan M.M.M. knn0n@gmail.com wrote: Hi everybody! What I want to do is make up a button that will be open an dialog box to select a

MVP and FormPanel with submit handlers

2010-01-12 Thread ZER0
Hi there, I'm using MVP pattern in a GWT project. So, I usually add the handler in the presenter, exposing from view the object through an interface like: HasClickHandlers getAddButton(); Now I have a problem with FormPanel: I need to add a SubmitHandler to this object, but apparently there

Re: Read-only RichTextArea?

2010-01-12 Thread Manuel Carrasco Moñino
This method also works in IE private native void setEnabled(Element iframe, boolean b) /*-{ var doc = iframe.contentWindow.document; if (doc.body.contentEditable) doc.body.contentEditable = b; else doc.designMode = b ? 'On' : 'Off'; }-*/; On

Re: SmartGWT?!

2010-01-12 Thread Stine Søndergaard
Hello again :) It would be fantastic if you could maybe attach a few more words to this: SmartGWT is a javascript wrapper - which means you don't get the advantages of the compiler, browser specific code compiles, code elimination, and runAsync (code splitting). ... I am not sure I understand

Re: Problems with SSL and hosted mode

2010-01-12 Thread Martin D'Aloia
I think that you have to change some settings... I have developed a GWT 1.5 app with the same declaration in web.xml and it worked perfect on development systems. I was using a external Tomcat 6.0.17, not the built-in tomcat do you have changed the -startupUrl to https:// ? On Mon, Jan 11, 2010

Re: SplitLayoutPanel

2010-01-12 Thread Stine
I have the feeling that it is because I have to include the CSS needed directly in my host page... -- 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

Re: SplitLayoutPanel

2010-01-12 Thread Stine
I have the feeling that it is because I have to include the CSS needed directly in my host page... but where do I find the relevant CSS?! :} -- 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: SmartGWT?!

2010-01-12 Thread Deanna Bonds
A wrapper means that it is not written in Java. It is javascript code, with just a calling Java wrapper around it so that it can be used from GWT. By not being written in Java you don't get the advantages the GWT compiler offers. Some of those I listed. First was code elimination. GWT

Re: SplitLayoutPanel

2010-01-12 Thread Stine
Gosh - now I know!! ;D I just need to include one of these lines in the project XML file... inherits name='com.google.gwt.user.theme.standard.Standard'/ inherits name=com.google.gwt.user.theme.chrome.Chrome/ inherits name=com.google.gwt.user.theme.dark.Dark/ Well, so far so good ;) Cheers,

Re: SplitLayoutPanel

2010-01-12 Thread Stine Søndergaard
Okay :) ... But to me it was not that obvious how to construct the names of the relevant style classes... -- 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

Re: SplitLayoutPanel

2010-01-12 Thread Stine
(Btw - the inclusion of a theme in the project XML did not seem to make a difference anyway ;)) On 12 Jan., 14:39, Stine stinespl...@gmail.com wrote: Gosh - now I know!! ;D I just need to include one of these lines in the project XML file... inherits

Format number on ComboBox / ComboBoxItem

2010-01-12 Thread Rogério Valente
Does anybody know how can I format a number value on ComboBox (GWT- EXT) or ComboBoxItem (SmartGwt)? The data is a json string sent from server generated by new Gson ().toJson(listOfObjects). -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group.

Re: SplitLayoutPanel

2010-01-12 Thread julien.dram...@gmail.com
no they are no style defined in themes. If you want to know the different style classes for a Widget, look at the javadoc of the associated class. for SplitLayoutPanel : http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/user/client/ui/SplitLayoutPanel.html On Jan 12, 3:00 

Re: SplitLayoutPanel

2010-01-12 Thread Stine
The names of the relevant style classes can be found in the JavaDoc :) http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/index.html Just in case someone else but me does not see things clearly right away ;) On 12 Jan., 14:45, Stine Søndergaard stinespl...@gmail.com wrote: Okay :) ...

Can I Cast a ResultSet to an ArrayList/DTO?

2010-01-12 Thread Russ
Is there any way to cast a JDBC ReultSet to an ArrayList of Strings (or another type of DTO) with a single assignment statement? Otherwise I end up iterating through the ResultSet twice - once on the server to assign its values to an ArrayList of DTOs - and once after its returned to the client

Re: Can GWT project have multiple EntryPoint

2010-01-12 Thread Alex
Each GWT module can have only one entry point and you should have only one entry point per page. A GWT module doesn't have to have any entry point though so common code used by more than one page/module can be moved to a common module inherited by them both. Is there a specific scenario you have

Re: Can I Cast a ResultSet to an ArrayList/DTO?

2010-01-12 Thread Lothar Kimmeringer
Russ schrieb: Is there any way to cast a JDBC ReultSet to an ArrayList of Strings [...] Is this (or something similar) possible? No Regards, Lothar -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

[gwt-presenter]: how to switch presenters

2010-01-12 Thread mariyan nenchev
Hi, i am having difficulties making my views to switch. Here is my code: Here is my hierarchy of presenters: AppPresenter, that contains HeaderPresenter and BodyPresenter: public class AppPresenter extends WidgetContainerPresenterAppPresenter.Display { public interface Display extends

Re: Can I Cast a ResultSet to an ArrayList/DTO?

2010-01-12 Thread Sean
No, there isn't a way to do that. In the great scheme of things, cycling through hundreds of items twice, isn't that big of a time sink. If it's taking too long from request to display, think about cutting up your query to only get say, 50 items. Display those and only grab the next 50 when

Re: RichTextArea Entities

2010-01-12 Thread DCYorke
We're using RichTextArea to compose emails. The problem seems to be that some email clients aren't seeing the characters correctly. So © shows up as a ?, but copy; shows up correctly. On Jan 12, 3:50 am, Martin Trummer martin.trum...@24act.at wrote: I just wonder, why you would want to do that?

Re: SplitLayoutPanel

2010-01-12 Thread UJ
Refer http://gwt.google.com/samples/Showcase/Showcase.html for more detailed examples. This is a tutorial cum showcase of all the GWT display widgets. Here you can see the desired type of widgets and learn how to use them on the Source Code tab. -- You received this message because you are

Re: SplitLayoutPanel

2010-01-12 Thread Stine Søndergaard
But what about the new panels introduced in GWT 2.0? They are not on that page, are they? :/ Sorry, if I am a bit slow here! :8 Thanks, Stine -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to

DomEvent.preventDefault() doesn't work in IE

2010-01-12 Thread Ken
Hi, All, I try to catch key down event for F1 key and display my own help popup. I wrote following code to handle KeyDownEvent. The method is bind by UI Binder. @UiHandler(takenByTextBox) void handleKeyPress(KeyDownEvent event) { int key =

Re: SuggestBox hides RootLayoutPanel and all its contents

2010-01-12 Thread UJ
I have never experienced this but its seems a browser specific problem. Specially when we try to populate GWT content in DIV, the display creates one or other problem for sure :-). The GWT is in itself a dynamic content so my personal suggestion is to render your code directly using GWT API only

Re: SplitLayoutPanel

2010-01-12 Thread UJ
:-) You are very fast (at least in responding). For new content, you can always go through the API reference. http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/index.html?overview-summary.html Actually I like the API reference most for any Java library. Regards, Upendra Jariya -- You

Re: SplitLayoutPanel

2010-01-12 Thread Stine Søndergaard
Hehe ;D - you are doing pretty good yourself as well!! Yes, I have learned that I can find the relevant style class names in the JavaDoc :) But what if I don't want to start completely from scratch in styling those GWT 2.0 panels? :} Thanks again, Stine -- You received this message because you

Re: Simple UiBinder question about ui:image resource=....

2010-01-12 Thread Chris Ramsdale
Do you have the following in your ui.xml file: ui:with field='res' type='com.google.gwt.sandbox.client.Resources'/ ...where 'com.google.gwt.sandbox.client.Resources' is replaced with your resources class. On Thu, Jan 7, 2010 at 5:24 AM, emerix rafa...@gmail.com wrote: Hello, I tried using

Re: SmartGWT?!

2010-01-12 Thread Open eSignForms
Also, when debugging the java code version, you can step into all the code easily, but this breaks down for the javascript code, which is in fact the vast majority of the library. The wrappers essentially package parameters/options and then call the javascript, making it much harder to do useful

Re: Open Dialog Box

2010-01-12 Thread Juan M.M.M.
Once I have selected the file (It will allways be an Image), how can I get the URL of the image to use it in an Image object? On 12 ene, 12:02, Abdullah Shaikh abdullah.shaik...@gmail.com wrote: You need to use FileUpload - Abdullah On Tue, Jan 12, 2010 at 4:27 PM, Juan M.M.M.

how to call EJB from GWT

2010-01-12 Thread NahumMor
hi, i'm new with gwt, My question is, how is the best way to call stateful and stateless enterprise bean from gwt rpc ? -- 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.

Re: how to call EJB from GWT

2010-01-12 Thread Diego Lovison
other way.. the documentation is good (in the site).. and have articles developed by gwt team.. http://code.google.com/intl/pt-BR/webtoolkit/articles/using_gwt_with_hibernate.html On 12 jan, 14:59, NahumMor nahum...@gmail.com wrote: hi, i'm new with gwt, My question is, how is the best way

eclipse plugin - dont show its debuggin or running

2010-01-12 Thread Diego Lovison
like tomcat, the eclipse plugin should be if my application its running or debuggin.. what the communitty think? -- 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

Re: how to call EJB from GWT

2010-01-12 Thread mariyan nenchev
@ Diego: Calling EJB method (almost) has nothing to do with glead. @NahumMor: It's simple lookup your ejb with InitialContext and call your method. I didn't manage to get injecting working. If it is statefull just find way to keep the reference in some cache after you lookup it. -- You received

GWT MySQL PHP

2010-01-12 Thread ANDRES BRUN
Hi everybody! I have a question about mysql, gwt and php, how can I connect all this in a web Application with the new version of GWT? I'm really novice in this but I want to learn and to practice, I need a guide for dummies. I have a php script, and I have a Mysql Database and I have connected

Re: DockLayoutPanel sample code

2010-01-12 Thread Chris Ramsdale
On Tue, Jan 5, 2010 at 9:18 AM, N G nistar...@gmail.com wrote: Hi, I tried the DockLayoutCode which is presented in http://code.google.com/webtoolkit/doc/latest/DevGuideUiPanels.html: DockLayoutPanel p = new DockLayoutPanel(Unit.EM); p.addNorth(new HTML(header), 2); p.addSouth(new

Re: Problem upgrading to GWT 2.0

2010-01-12 Thread Chris Ramsdale
Before deploying the updated 2.0 code to your server, did you try deleting your war/module directory and recompiling? Also, is there anything significant about the objects you are passing over the wire? - Chris On Sun, Jan 10, 2010 at 10:07 PM, Cliff Newton cliff.new...@gmail.comwrote: A

Re: GWT 2.0 RPC not picking up custom generated Serializable classes

2010-01-12 Thread Martin Söderström
Chris, Thanks for trying to help me with this. As for your questions, I'm not sure I understand the second one, but I'll exemplify better what my code is doing: First there is a listener interface: public interface TestMessageListener { void messageReceived(String message); } Then

Re: RichTextArea Entities

2010-01-12 Thread Martin Trummer
I'd just check, if the encoding of the mail is set correctly. If the client does not support unicode at all, you're out of luck anyway, because users could include all other sorts of unicode chars (for which no html-entity exists) you could of course implement a way to convert the chars to their

Re: MVP and FormPanel with submit handlers

2010-01-12 Thread Thomas Broyer
On Jan 12, 12:27 pm, ZER0 zer0.k...@gmail.com wrote: Hi there, I'm using MVP pattern in a GWT project. So, I usually add the handler in the presenter, exposing from view the object through an interface like: HasClickHandlers getAddButton(); Now I have a problem with FormPanel: I need to

Re: Format number on ComboBox / ComboBoxItem

2010-01-12 Thread Rogério Valente
A way to format number value on .toJson(listOfObjects) invoke is usefull. On 12 jan, 12:03, Rogério Valente rogerio.vale...@gmail.com wrote: Does anybody know how can I format a number value on ComboBox (GWT- EXT) or ComboBoxItem (SmartGwt)? The data is a json string sent from server generated

Re: MultiWordSuggestOracle and HTML display

2010-01-12 Thread Amos Sam
On Jan 12, 12:07 pm, Fazeel Kazi fazzze...@gmail.com wrote: Two changes will be needed: . CollectionSuggestion defaults = new ArrayListSuggestion(); . . defaults.add(new MultiWordSuggestOracle.MultiWordSuggestion(Something, ht)); . Thank's for the answer, but After

Re: DockLayoutPanel sample code

2010-01-12 Thread Stine Søndergaard
Looking very much forward to the default styles :) To me the way to even just a sample application seems endless without them... *sigh*... -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to

Where to get started with GWT and Federated login? (php only)

2010-01-12 Thread darkflame
I'm interested in adapting my site to work with a federated login system. (you can see a beta of my site here to get the general idea; http://www_rateoholic.co.uk/test/Rateoholic/main/Rateoholic_Frame.html#titlepage ) Ive looked over the; http://code.google.com/apis/accounts/docs/OpenID.html

Re: SplitLayoutPanel

2010-01-12 Thread Stine Søndergaard
Hmm... wonder what other developers do they just avoid using the new panels from GWT 2.0 maybe? :) Or is there a secret place where some default styles can be fetched? ;D Know that this post is not really asking anything new... hmm ;) -- You received this message because you are subscribed

Re: how to call EJB from GWT

2010-01-12 Thread Diego Lovison
lol On 12 jan, 15:10, mariyan nenchev nenchev.mari...@gmail.com wrote: @ Diego: Calling EJB method (almost) has nothing to do with glead. @NahumMor: It's simple lookup your ejb with InitialContext and call your method. I didn't manage to get injecting working. If it is statefull just find way

Re: SuggestBox hides RootLayoutPanel and all its contents

2010-01-12 Thread Isaac Truett
Jorge, Can you use a DOM inspector to examine that white overlay? I would guess that you have an opaque glass panel and you just need to set some CSS to make it transparent. Knowing what that white thing really is would help. - Isaac On Mon, Jan 11, 2010 at 10:38 PM, Jorge jsle...@gmail.com

Re: Blank Screen in IE8 but Normal in FF3.5

2010-01-12 Thread Carlos Aguayo
I have the same problem and also for me the x-ua-compatible tag fixed it. I created a project using the gwt eclipse plugin, here's the java file: === import com.google.gwt.core.client.EntryPoint; import com.google.gwt.core.client.GWT; import com.google.gwt.uibinder.client.UiBinder; import

Re: MVP design help for Display interface

2010-01-12 Thread Trevis
My solution to this problem was to create one presenter/view pair for the table as a whole and then a seperate presenter/view pair for the rows. This way the Cell click handlers are all in the same context. The table presenter gets new row instances from gin and initializes it by passing in a

Re: how to call EJB from GWT

2010-01-12 Thread mariyan nenchev
What? ejb is much much more than, persistence layer. NahumMor may want to call ejb method that calculates something and does other processes so other things that do not involve persitence. So, explain to me how glead will answer his question, which is how is the best way to call stateful and

Re: SuggestBox MVP problem

2010-01-12 Thread 4F2E4A2E
this is so annoying! i cant bind my suggestBox to the view... is there any hope for this beeing fixed? or is suggestionBox just not supported? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

DialogBox issue with IE

2010-01-12 Thread Memo Sanchez
Good day, I am facing a really strange problem with IE, which I think it is caused by the DialogBox, but I am not sure of this. I have A DialogBox which contains a DataTable ( one of our widgets) with some buttons. Every time I hover over one of the buttons (which fires a MouseOver event changing

GWT Incubator Status Update and Schedule

2010-01-12 Thread John LaBanca
Incubator Users - The Google Web Toolkit Incubator project began as a proving grounds for new widgets to be vetted before joining the ranks of the GWT trunk. We've seen some success stories over the last year with EventHandlers, ClientBundle, and DatePicker, but for many of the widgets and

How to listen to keyboard events in a Panel?

2010-01-12 Thread Fredu
I'm really new to GWT so please point me in the right direction. I'm trying to create a Panel with widgets in it, in this case I created a FocusPanel and would like for the FocusPanel to listen to keyboard input. Just any buttonclick would be fine. But I can't seem to get it to get any events.

Re: OOPHM is slow

2010-01-12 Thread timmattison
I just started using OOPHM on my Mac (10.6.2) and it is very, very slow. I've tried all of the recommendations about changing the URL to include only localhost or 127.0.0.1 but I still have to wait nearly three minutes for my application to start. The program I'm writing is currently very small

Re: MAC compatible

2010-01-12 Thread Yogi
http://code.google.com/webtoolkit/gettingstarted.html#installing On Jan 9, 6:31 am, fmac81 fma...@gmail.com wrote: Is the Google SDK MAC compatible?  It is a .zip file and does not work on my mac. Thanks -- You received this message because you are subscribed to the Google Groups Google Web

Re: ImageResource: How to resize ?

2010-01-12 Thread Francisco Bischoff
Hello ppl, Well DataResources worked fine, but, what about the power of create a single set of images for many little images? There isn't a way to keep using the set of images (ImageResource) and resize one of those images? The example would be a resizable icon. -- Francisco Bischoff On 2 Jan,

Re: MAC compatible

2010-01-12 Thread Yogi
http://code.google.com/webtoolkit/gettingstarted.html#installing On Jan 9, 6:31 am, fmac81 fma...@gmail.com wrote: Is the Google SDK MAC compatible?  It is a .zip file and does not work on my mac. Thanks -- You received this message because you are subscribed to the Google Groups Google Web

GWT Validation Best Practice

2010-01-12 Thread simonob007
Hi GWT Community I am in the process of evaluating GWT as a basis for building RIA's so am building out a basic form based application to test out GWT. So far my GWT experience has been really good however I appear to have hit a brick wall in terms of validation (such as basic client side form

Re: MVP Architecture source code?

2010-01-12 Thread Ralph
Hi, Can someone post the link to the MVP/DI/Event Bus/Best Practices Contacts source example. I've looked around and don't see it. Thanks, Ralph On Jan 4, 10:31 am, Walter waltervanderl...@gmail.com wrote: @Chris: Thanks for the source code! The Contacts example is clear and well written

CodeSplitting and External Javascript

2010-01-12 Thread Julie Cowart
I am using an external javascript (for gwt-OpenLayers specifically) and currently have this being included in my host page by adding script src=http://openlayers.org/api/2.8/OpenLayers.js;/script This script is quite large and I would like to load this in a separate split point. I have tried

Re: Getting RuntimeException in development mode for gwt2.0

2010-01-12 Thread ToonDoom
I'm also seeing this problem with gwt 2.0 and gwt-log 3.0.1. Full build works well. Development mode gets the message: java.lang.RuntimeException: Deferred binding failed for 'com.allen_sauer.gwt.log.client.impl.LogImpl' (did you forget to inherit a required module?) On Dec 28 2009, 7:19 am,

Re: Read-only RichTextArea?

2010-01-12 Thread selezovikj
com.google.gwt.core.client.JavaScriptException: (TypeError): iframe.contentWindow is null What do you think might be causing this null pointer exception ? On Jan 12, 1:23 pm, Manuel Carrasco Moñino man...@apache.org wrote: This method also works in IE     private native void

Re: Return a JDBC ResultSet from RPC via DTO

2010-01-12 Thread jhollerer
Hi Russ, i am also new to GWT but i think Gilead (http://sourceforge.net/ projects/gilead/) should help you to get the info as a DTO ! br johannes On 11 Jan., 16:38, Russ r...@epcinternet.com wrote: Hi, I understand that I can't return an actual JDBC ResultSet from an RPC. Can someone point

Re: GWT 2.0 - Problem with Eclipse plugin and UiBinder Field xxx has no corresponding field in template file yyy.ui.xml

2010-01-12 Thread witt_hu
Hi, I had the same problem. Source folder in my buildpath had Include: (All) I replaced it to Included : **/*.java. It worked correctly. After than I removed that (so my buildpath had Include: (All) again) and now it is working correctly also. I hope it's help for you! (Sorry for my easy

avoid the use of ActiveX-Objects

2010-01-12 Thread Sellfisch
Hi there, we are writing an GWT Business Application and have to roll it out on IE6-Browsers with ActiveX disabled :'(. Is it possible to tell the compiler not to use activeX or how can we avoid the use of ActiveX-Objects. Asking for alms Tobias -- You received this message because you are

Re: MVP Architecture source code?

2010-01-12 Thread Chris Ramsdale
http://code.google.com/webtoolkit/doc/latest/tutorial/projects/Contacts.zip On Mon, Jan 11, 2010 at 11:42 PM, Ralph fed...@gmail.com wrote: Hi, Can someone post the link to the MVP/DI/Event Bus/Best Practices Contacts source example. I've looked around and don't see it. Thanks, Ralph

Re: OOPHM is slow

2010-01-12 Thread Chris Ramsdale
Although this smells of a network configuration issue, one suggestion you could try is to set the log level to Debug or lower. Debug-Debug Configurations-GWT-Log level. Try that, and let us know if anything suspect is output. - Chris On Mon, Jan 11, 2010 at 11:56 AM, timmattison

[ANN] Gilead 1.3

2010-01-12 Thread noon
Hello, I am pleased to announce the new release of Gilead, an Open-Source framework for seamless intregration of Hibernate and GWT. This new release brings new features, such as - Predefined remote services, for both GWT : * The Loading service allows you to load an entity or a lazy

Re: Gilead 1.3

2010-01-12 Thread noon
Oups, I forgot to post the project URL : http://gilead.sourceforge.net Regards Bruno On 12 jan, 21:09, noon bruno.marches...@gmail.com wrote: Hello, I am pleased to announce the new release of Gilead, an Open-Source framework for seamless intregration of Hibernate and GWT. This new release

How to dynamically update AnnotatedTimeLine?

2010-01-12 Thread yc
Hello, How do I dynamically update an AnnotatedTimeline in the GWT Visualization toolkit? I changed its underline DataTable but the chart was not refreshed automatically after the change. I noticed that the redraw() function in the JavaScript API but didn't see the same redraw function on the

Re: GWT 2.0 RPC not picking up custom generated Serializable classes

2010-01-12 Thread Chris Ramsdale
My comments/questions inline: The generated class extends this AbstractRpcObserver (and is thereby Serializable) and implements the TestMessageListener interface. An instance of the generated class is used as argument in the addMessageListener method invoction in the RPC service. If I

Re: GWT Validation Best Practice

2010-01-12 Thread Deanna Bonds
There is a validation library in gwt-incubator but I haven't used it yet. It is on my todo list to explore it. There isn't much doc to it so you will have to dissect the code in the jar file. On Jan 12, 6:30 am, simonob007 simonob...@googlemail.com wrote: Hi GWT Community I am in the process

Re: OOPHM is slow

2010-01-12 Thread Tim Mattison
I changed my debug level from Info to Debug and got lots of additional output but nothing that looked like it was the culprit. My application runs like this: 1) onModuleLoad is called, builds the UI, and fires off a GWT-RPC call 2) The server receives the GWT-RPC call, connects to a Hibernate

Re: GWT Incubator Status Update and Schedule

2010-01-12 Thread Jim Douglas
It's great to see that there's a road map for migrating those widgets to the trunk! We can use most of those features now (in particular: Validation, Slider, ProgressBar, Graphics, and Locale selection). Can we still expect to see a 2.0-compatible version of the current gwt- incubator.jar? On

Re: OOPHM is slow

2010-01-12 Thread Chris Lowe
Tim, Are you filtering your Hibernate objects or translating them to DTOs (to remove dynamic proxies etc) before serialising them? If the answer is no to the above, then you might be falling foul to circular references or Hibernate fetching more data than you expect. As an experiment, is it

Multiple Methods Within One RPC Service?

2010-01-12 Thread Russ
I have a single app that needs to call several different methods from the server. Is it better to have all the methods contained in one RPC service, or should I have a speerate service for each method? (By Service I mean the Service.java, ServiceAsync.java and ServiceImpl.java files) Thank you.

Re: GWT Incubator Status Update and Schedule

2010-01-12 Thread Open eSignForms
And the now wondering projected release date for GWT 2.1 to make it's debut -- 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: OOPHM is slow

2010-01-12 Thread Tim Mattison
That's what I thought originally but I can see that it's only pulling back 165739 bytes from the RPC. When I don't return anything it turns out that it runs quickly so it obviously must be related to that. I'm not using DTOs but where is it trying to fetch the data from if it's not getting

Re: GWT maps: multiple maps InfoWindow problem

2010-01-12 Thread morfeusys
Thanks for your answer! The code crashes only if the first map with the same code was initialized previously. This means that I can't initialize another map with info window if I have another map already initialized. Is there some workaround? For example can I manualy unwrap info window object if

Re: SplitLayoutPanel - Is there a way to set splitter position programmatically?

2010-01-12 Thread Gabriel Guerrero
Hi Shiang I posted a solution for this in the following thread http://groups.google.com/group/google-web-toolkit-contributors/browse_thread/thread/d08a30d356aef5c1 Cheers Gabriel On Dec 5 2009, 12:23 pm, shiang sfk...@gmail.com wrote: Hi all, Do you know is there any workaround solutions to

GWT RPC calls run in a separate thread on the server??

2010-01-12 Thread drunningw
Hello all, My understanding was that each call to a method in GWT service class that implements RemoteService would run in a new thread on the server. However , we have logged using, System.out.println (Thread.currentThread()), the threads running on the server-side code and get something that

Re: GWT Incubator Status Update and Schedule

2010-01-12 Thread Eric
On Jan 12, 1:05 pm, John LaBanca jlaba...@google.com wrote: Incubator Users - The Google Web Toolkit Incubator project began as a proving grounds for new widgets to be vetted before joining the ranks of the GWT trunk. We've seen some success stories over the last year with EventHandlers,

Re: GWT Incubator Status Update and Schedule

2010-01-12 Thread Gabriel Guerrero
+1 For at least doing another release compatible with gwt 2, I use the FastTree and the PagingScrollTable, and it will be nice to have a version of those widgets that support the new layout system, for what I saw in the trunk the seem to be already compatible with the new layout, although I have

Re: Multiple Methods Within One RPC Service?

2010-01-12 Thread drunningw
I would only use one service until it got too big, or until your service calls fall into some sort of natural hierarchy, e.g., CustomerServices, OrderServices, etc. More Service classes mean more overhead in the web.xml, in the app xml file, etc. However, clarity of intent should be the guiding

Re: Use smartgwt or not

2010-01-12 Thread ckendrick
Incorrect, SmartGWT allows both. Purchasing a license does not imply that you *must* use the closed-source server-side portion. If you use just the capabilities of SmartGWT LGPL, you can offer the LGPL licensing terms to customers that prefer it, and you can purchase a license from Isomorphic to

Re: OOPHM is slow

2010-01-12 Thread Chris Lowe
Hi Tim, It's still conceivable for a circular reference (or at least massively repeated objects) to be at play here. Your response size is 165739 bytes *compressed* size - many identical objects could compress to something relatively small and their expansion could cause issues. Also with

Re: Multiple Methods Within One RPC Service?

2010-01-12 Thread flyingb...@gmail.com
I use one too. I think a single point is better than multiple points. -- 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

Re: Gilead 1.3

2010-01-12 Thread flyingb...@gmail.com
I never understand how to use hibernate. It seems so complex and doing normal mysql commands seems a whole lot eaiser. On Jan 12, 12:19 pm, noon bruno.marches...@gmail.com wrote: Oups, I forgot to post the project URL :http://gilead.sourceforge.net Regards Bruno On 12 jan, 21:09, noon

  1   2   >