Is passing the event handler a good idea ? or to have a global event ?

2010-04-23 Thread amjedonline
Hi, Please help me understand what is the best way of event handling in nested panel structures. what i mean is, suupose you have something like this: // fires event BusinessEvent1 // handles event BusinessEvent2 class MyWidget extends Composite{ } // fires event BusinessEvent2 // handlers

module structure

2010-04-23 Thread Stefan Bachert
Hi, This is a question for the real professionals of gwt I have 3 modules. Architectural view a) an Interface defining a .css which uses @sprite on image which aren't supplied by the module itself b) an Implementation which supplies the images c) an Application which works against a).

Re: UiBinder internationalization using regular Constants?

2010-04-23 Thread Toni
Nice feature, thanks On Apr 21, 8:25 pm, Thomas Broyer t.bro...@gmail.com wrote: On 21 avr, 18:19, Toni tonin...@gmail.com wrote: Hi there, I've been trying to use one single file to internationalize my whole application with no luck. I've been reading this

prefix styles in CssResource?

2010-04-23 Thread Ed
Hi All, I am trying to use a style like: .panel .content { padding: 10px; } In the CssResource way. How can I do this correctly? I find the documentation on this (http://code.google.com/webtoolkit/ doc/latest/DevGuideClientBundle.html#CssResource) is a bit hard to understand :(... Ed --

Re: module structure

2010-04-23 Thread Sripathi Krishnan
It is easily achievable. The trick to remember - GWT loads images from the classpath. So here's how the system would work - Module A would contain the interfaces MyCss1, MyCss2 *AND* the interface MyImages. It would also contain the actual image MyPic.png, it could be an empty or default image

GWT + app engine: how do I avoid double-work?

2010-04-23 Thread jbdhl
I use app engine's datastore with JDO, which is able to store classes if they are @PersistenceCapable. But annotations like @PersistenceCapable is, as far as I understand, not available in GWT (the client side), forcing me to re-implement the model classes without the @Persistent-annotations for

Re: GWT + app engine: how do I avoid double-work?

2010-04-23 Thread Christian Goudreau
Use something like Twig-Persist or Objectify instead of JDO, it's WAY simplier. Christian On Fri, Apr 23, 2010 at 7:18 AM, jbdhl jbirksd...@gmail.com wrote: I use app engine's datastore with JDO, which is able to store classes if they are @PersistenceCapable. But annotations like

Re: GWT + app engine: how do I avoid double-work?

2010-04-23 Thread jbdhl
Interesting! But Twig-Persist and Objectify both uses their own annotations too. Doesn't that prevent me to re-use the objects on the client side in GWT? Another thing: Twig-Persist seems to address all the short-comings of Objectify, JDO and SimpleDS. Doesn't Twig-Persist have any draw-backs? I

Roadmap for Google Eclipse Plugin?

2010-04-23 Thread Fred
Hi, Is there a roadmap for the Google Eclipse Plugin? Any ETA for 1.4? Any chance http://code.google.com/p/google-web-toolkit/issues/detail?id=4802 will be addressed in the next version? I've frozen my hacking of a m2eclipse configurator because of that :-( regards, Fred Bricon -- You

Re: GWT + app engine: how do I avoid double-work?

2010-04-23 Thread Christian Goudreau
Yes they use annotations, but there's no enhancement process like in JDO, so you can reuse your model without any problem. I use Twig for my projects with GWT and It's just wonderful ! Twig-Persist is optimised for AppStore Datastore, so if there's any draw back, the come directly from the

How to repeat a function every X seconds??

2010-04-23 Thread crojay78
Hi, can somebody tell me if it is possible to start a certain function in the client repetitive? I want to store the configuration stuff of my GWT-Project every minute, so that I can restore it if the browser crashes or so Thanks a lot -- You received this message because you are

Re: How to repeat a function every X seconds??

2010-04-23 Thread Christian Goudreau
With a timer. See Gwt Timer class. Christian On Fri, Apr 23, 2010 at 8:49 AM, crojay78 croja...@googlemail.com wrote: Hi, can somebody tell me if it is possible to start a certain function in the client repetitive? I want to store the configuration stuff of my GWT-Project every minute, so

Re: How to repeat a function every X seconds??

2010-04-23 Thread Christian Goudreau
BUT will not work if the browser crashes. BUT you could store those configuration server side every time the timer function is called. Christian On Fri, Apr 23, 2010 at 9:07 AM, Christian Goudreau goudreau.christ...@gmail.com wrote: With a timer. See Gwt Timer class. Christian On Fri,

Re: Roadmap for Google Eclipse Plugin?

2010-04-23 Thread Miguel Méndez
We are currently working on GPE 1.4. There will be a milestone release available around the middle of May. Unfortunately, we don't have plans to address issue 4802 as part of that effort. On Fri, Apr 23, 2010 at 8:10 AM, Fred fbri...@gmail.com wrote: Hi, Is there a roadmap for the Google

Re: How to repeat a function every X seconds??

2010-04-23 Thread Stefan Bachert
Hi, the stockWatcher-project out of the tutorial has exactly this functionality. Just have a look on the GWT-Tutorials Stefan Bachert http://gwtworld.de On 23 Apr., 14:49, crojay78 croja...@googlemail.com wrote: Hi, can somebody tell me if it is possible to start a certain function in the

Re: GWT Module not loaded on app engine

2010-04-23 Thread Vik
Hie Any one on this please? ?Its a blocking issue for us. Thankx and Regards Vik Founder www.sakshum.com www.sakshum.blogspot.com On Thu, Apr 22, 2010 at 2:59 PM, Vik vik@gmail.com wrote: Hie Yes I know i dont need it when deploying to demoApp. The problem is my page is not

Re: module structure

2010-04-23 Thread Stefan Bachert
Hi Sri, I get your idea to play with the classpath. I do not know offhands how to make it happen within eclipse, but I am going to try it. Thanks Stefan Bachert http://gwtworld.de On 23 Apr., 12:14, Sripathi Krishnan sripathikrish...@gmail.com wrote: It is easily achievable. The trick to

Re: prefix styles in CssResource?

2010-04-23 Thread Stefan Bachert
Hi Ed, you missed to tell us what exaclty you do not understand. When you do nothing else within the css, you have to create an own interface from CssResource and add the css-classes String panel(); String content(); This class return the obfuscated (real) names of the classes which you have

compile just for one browser

2010-04-23 Thread Stefan Bachert
Hi, some defects will not reported in development mode. So I switched to production mode for TEST. However, 6 instance of JavaScript will be created. In the past I was able to reduce to number of supported browser within the module.xml. Meanwhile the definition of of browser is very deeply

Re: GWT + app engine: how do I avoid double-work?

2010-04-23 Thread Thomas Broyer
On Apr 23, 1:18 pm, jbdhl jbirksd...@gmail.com wrote: I use app engine's datastore with JDO, which is able to store classes if they are @PersistenceCapable. But annotations like @PersistenceCapable is, as far as I understand, not available in GWT (the client side), forcing me to re-implement

Re: compile just for one browser

2010-04-23 Thread mariyan nenchev
!-- This property is set for faster compilation during development, it MUST be removed on production-- set-property name=user.agent value=gecko1_8/ -- 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: IsTextBox/widget-specific interfaces

2010-04-23 Thread Thomas Broyer
On Apr 22, 5:55 pm, Stephen Haberman step...@exigencecorp.com wrote: Hi, I've been doing GWT MVP development lately and, while the HasText, HasValueT, etc. interfaces are nice and facilitate mocking/stubbing out views, I'm wondering why GWT doesn't go further and add per-widget interfaces.

Re: compile just for one browser

2010-04-23 Thread Stefan Bachert
Hi mariyan, Thanks, meanwhile I found that, too Stefan Bachert http://gwtworld.de On 23 Apr., 16:55, mariyan nenchev nenchev.mari...@gmail.com wrote:     !-- This property is set for faster compilation during development, it MUST be removed on production--     set-property name=user.agent

GWT Developer plugin for Chrome on OS X (mac)

2010-04-23 Thread Jim Adkins
Is there anyone out there who can give the development community a status update as to when we might see a GWT Developer plugin for Chrome on OS X? I'm aware of and use the Safari plugin, but need to test in Chrome. Thanks -- You received this message because you are subscribed to the Google

Is GWT's rpc eval() call safe?

2010-04-23 Thread bconoly
Hey All, I've been looking through the gwt code in an attempt to figure out if its call to the javascript eval() function is safe on rpc responses. So far I've seen that it natively calls the eval function in the ClientSerializationStreamReader class with an encoded response. Unfortunately I

ui:image, image within an anchor or a button

2010-04-23 Thread Carlos Aguayo
I'd like to have an image within an anchor or a button tag. I'm using the UiBinder and I need the anchor or button to be a widget so I can use their HasClickHandlers interface. I wanted to use an image widget so I can use an ImageResource, something like this: !DOCTYPE ui:UiBinder SYSTEM

Re: GWT + app engine: how do I avoid double-work?

2010-04-23 Thread gengstrand
Twig-Persist is GAE only. JDO is useful for when you want to build a GWT app that could either run against an RDBMS, GAE, or EC2. With JDO, you get more deployment choices. However, the down side is all the extra coding associated with implementing the DTO pattern which is usually the answer to

tutorialのstep1 実行結果について

2010-04-23 Thread ure...@yahoo.co.jp
tutorialのstep1 実行結果は下記のとうりですがbrowserが表示されません。 C:\TakedaHisashi\projectcd c:\system\googleWT\gwt-2.0.3\gwt-2.0.3 C:\system\googleWT\gwt-2.0.3\gwt-2.0.3call webAppCreator -overwrite - out c:\system\googleWT\gwt-2.0.3\gwt-2.0.3\celine\stockWatcher - XnoEclipse

Strange Unknown Host Error

2010-04-23 Thread jimmyjones
Hi All, One of my customers has experienced a strange error message when using my GWT 2.0.3 application. On one specific RPC call this client error happens: -- An error occurred while attempting to contact the

Re: How to add a scrollbar to a SuggestBox popup?

2010-04-23 Thread Andy
We started using the trunk because of the refactoring that's been done to SuggestBox. I considered copying it out and doing my own refactoring but ran into the same dependency issues. If you are able to use the trunk with the refactored SuggestBox, you find that you can do the following: public

Build a javascript library

2010-04-23 Thread ronnyjl
Hi, I'm sure there is answer to this question already. How do I take a java class and export it to a javascript library? I found an article here: http://code.google.com/p/gwtchismes/wiki/Tutorial_ExportingGwtLibrariesToJavascript_en However, it appears I will need to import a jar not part of

Re: UiBinder Hyperlink history

2010-04-23 Thread Sebastian Hoß
g:Hyperlink targetHistoryToken=YOUR_TOKEN_HERE / clicking this link will add a new history item with the given token and will fire a new ValueChangeEvent. On Thu, Apr 22, 2010 at 10:44 AM, raj raj.cowbo...@gmail.com wrote: Hi !   I'm working gwt2.0 UIBinder. I tried to maintain history in my

Re: Floating label

2010-04-23 Thread Raphaël Brugier
How is your label added to the page ? You should try to display your label inside a popupPanel. Raphaël. On 21 avr, 13:37, Yogesh yogeshrn...@gmail.com wrote: Hi, I want to display a message Loading.. Please wait... when user clicks on any button. I have a label at the top-center of the

How to use a DisclosurePanel within a DockLayoutPanel's north panel

2010-04-23 Thread Philippe Frangioni
Hi, I want to use a DockLayoutPanel with a fixed height and with 2 parts: the NORTH and the CENTER. In the NORTH panel, I want to set a DisclosurePanel. The problem is that the height of the NORTH panel is fixed and set at creation. So when the DisclosurePanel gets opened, the content of the

Switching between fields

2010-04-23 Thread GWTNewbie
Hi: I am new to GWT. I have 2 widgets Widget1 and Widget2. Both the Widgets have 1 Label and 1 Button each. The Widgets are created using UiBinder. When I launch the application I want to display Widget1. When I click on the button of Widget 1 I would like to hide the widget and then display

Re: Ellipsis in Firefox

2010-04-23 Thread Borya
I just had the same issue with ellipsis in Firefox. i put in \-moz-binding: url('your relative path here.xml#ellipsis'); in the css file, and it worked like a charm. You might want to make sure that you indeed have a resource file at that location. I also had issues with the xml file being on a

regarding use of Google Translate.

2010-04-23 Thread nissimtr
Hi I'm not sure this is the place to ask my question but it is the most appropriate place I have found. If there is a place which is more appropriate i would really appreciate you directing me there. I have developed a small and simple standalone application (.exe file) which uses Google

Re: GWT Developer Plugin is not found in Firefox

2010-04-23 Thread abustany
Hello Chris still experiencing this problem with Firefox 3.6.3, and a fresh example app, even in a clean Firefox profile. I tried with the gwt-servlet.jar from a trunk old of ~2 weeks and it fails too. On 20 avr, 10:25, Chris Conroy con...@google.com wrote: For those of you still experiencing

help with unwanted cookies

2010-04-23 Thread aalift
dont know how or why or even where there at but when i load my web page a bunch of unwanted french cookies show up? -- 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

new GWT MVP article (part 2)

2010-04-23 Thread interdev
Hello everyone, have you seen the new MVP Architecture article from google ? http://code.google.com/webtoolkit/articles/mvp-architecture-2.html they have changed the structure slightly, instead of having a View and a Presenter which has an inner Interface (Display), aside from the UiBinder part,

Re: regarding use of Google Translate.

2010-04-23 Thread nissim trifonov
http://groups.google.com/group/google-web-toolkit On Wed, Apr 21, 2010 at 9:22 PM, nissimtr nissi...@gmail.com wrote: Hi I'm not sure this is the place to ask my question but it is the most appropriate place I have found. If there is a place which is more appropriate i would really

Re: Image upload / store database

2010-04-23 Thread Anic
i'm a newer. but i dont think using gwt-rpc-call can upload a file. use servlet is a solution. here is part of the server code(servlet),and some apache package is needed: commons-fileupload-1.2.1.jar commons-io-1.4.jar i hope it can help import java.io.File; import java.io.FileInputStream;

minimizing latency

2010-04-23 Thread Matt Rosencrantz
Hello, I'm trying to write a gwt application and it's very latency sensitive. In order to get back to the client faster I would like to respond to the client in the middle of my GWT implementation function. Also I'm using appengine so I can't just spawn a thread to do the work. Normally in a

keyboardlistener to my login page

2010-04-23 Thread janmejay
hi , I have created the login page with gwt, which contain username, password and login button. I have written some logic that checked the credential and go on.I used flextable which contains all the widgets. now problem is that ,I have to create keyboardlistener for whole page and that means

tutorialのstep1 実行結果について

2010-04-23 Thread ure...@yahoo.co.jp
tutorialのstep1 実行結果は下記のとうりですがbrowserが表示されません。 C:\TakedaHisashi\projectcd c:\system\googleWT\gwt-2.0.3\gwt-2.0.3 C:\system\googleWT\gwt-2.0.3\gwt-2.0.3call webAppCreator -overwrite - out c:\system\googleWT\gwt-2.0.3\gwt-2.0.3\celine\stockWatcher - XnoEclipse

EJB3 in developer mode

2010-04-23 Thread Pepito
Hi Does anybody know how to acomplish this? I found the easybeans for jetty war but I don't know how to make embedded jetty load it. Has anyone has acomplished this? Any clue on other directions? Thanks :) -- You received this message because you are subscribed to the Google Groups Google

Performing logout on single tab close in multitab browsers

2010-04-23 Thread Pankhuri
Hi All, I am developing an application in which no content can be seen without successful login. The session is maintained on client side via session cookie. I do not have any external hyperlinks in my application. 1. I want to logout when user navigates to some other site through browser back

Re: GWT Developer Plugin is not found in Firefox

2010-04-23 Thread abustany
Also adding that it works on a 32 bit Firefox 3.6.3, Ubuntu Lucid. Mine is x86_64 and fails (Fedora 13 Beta). On Apr 20, 10:25 am, Chris Conroy con...@google.com wrote: For those of you still experiencing this issue, can you try checking that your problem persists if you create a new GWT

Little wish

2010-04-23 Thread Alex Beresnevatiy
Hello GWT Team, Do not know if someone have a time for this but I have a little proposition that may make developer life easier. Just add @Retention(RetentionPolicy.RUNTIME) to com.google.gwt.user.client.rpc.RemoteServiceRelativePath. It helps to asknowledge mapping for service without having the

Bootstraping issue: $wnd empty. Emmbeding gwt iView into a SAP portal framework

2010-04-23 Thread Rafa Moncayo
Hi.. i'm deploying a relative simple GWT application in a SAP EP Portal Framework. The purpose, make a RAI navigation iView. When running this gwt as a simple portal iview it works as expected. The problem becomes when running this same iview embedded in the framework page. SAP embeed the

How do I make certain text in a TextBox turn red! - using setText()?

2010-04-23 Thread Navigateur
I just want to make certain words typed by a user in a text box turn red. I have tried encasing the words with html tags with setText() but the tags show in the final text!! I don't want all the text in the TextBox to turn red. How do I do this? My genuine thanks, N -- You received this

Why no getCursorPos() on RichTextArea?

2010-04-23 Thread Navigateur
What's the best way of getting cursor position upon clicking in a RichTextArea? (Using TextBox or TextArea is not an option for me!) Any ideas? Thanks, N -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Reading from properties file

2010-04-23 Thread pragupt
Hi, I am new to GWT and dont know how to read a properties file located in a server side location. please can you suggest some ways to do this -- 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: Transferring an image over an PRC call

2010-04-23 Thread KK
Hello, Thank you for your response. I am a step closer. Since I am using two servlets (for upload and download) of the image. do I need to make any changes in .gwt.xml or web.xml file? thanks On Apr 21, 6:34 am, ahmet terzioglu ahmet.terzio...@gmail.com wrote: Hi, First of all, I don't

Google Web Toolkit will release new GWT Developer Plugin for Chrome on Linux ?????

2010-04-23 Thread demo999
Hi , I am use gwt-2.0.3 to develop web app when I use Chrome to test gwt , It will appear Development Mode requires the Google Web Toolkit Developer Plugin I find this message GWT Developer Plugin for Chrome on Winx86 , But I am use Chrome on Linux(Ubuntu) , So , Google Web Toolkit will

plugings

2010-04-23 Thread shaggo
thanks for ur comment on this group now the plugins seems easy to utilize amagada shadrach http://furnishingurhome.blogspot.com -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Why no getCursorPos() in RichTextArea

2010-04-23 Thread Navigateur
getCursorPos() should simply return the cursor position relative to the actual text on the screen (result of getText()) and not its HTML. -- 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: GWT + app engine: how do I avoid double-work?

2010-04-23 Thread Raphaël Brugier
Since GWT 2.0 classes with JDO or JPA annations can be serialized over gwt-rpc see http://code.google.com/intl/fr/webtoolkit/doc/latest/DevGuideServerCommunication.html#DevGuideSerializableTypes On 23 avr, 14:46, Christian Goudreau goudreau.christ...@gmail.com wrote: Yes they use annotations,

Re: GWT Developer Plugin is not found in Firefox

2010-04-23 Thread abustany
I also tried with the Firefox plugin from GWT trunk, and got the same result :/ On Apr 20, 10:25 am, Chris Conroy con...@google.com wrote: For those of you still experiencing this issue, can you try checking that your problem persists if you create a new GWT application (e.g. just run the

Does GWT provide support for themes ?

2010-04-23 Thread Shahzeb Khan
Does GWT provide support for themes like whe JSF or rich faces ? We are evaluating GWT for using it as the presentation layer over JSF . Other option we have is Richfaces . So far we love GWT but support for themes will be the deal breaker or maker . I have noticed some third party gwt support

Free, open, and decentralized social networking.. in GWT !

2010-04-23 Thread @eschnou
Hi everyone, Just a short post to let you know that we have just released the web client for http://onesocialweb.org, an open source (Apache 2) project building an open and decentralized social network using XMPP and Activitystrea.ms. Our web client is entirely written in GWT and does not

اطلاعيه بزرگداشت 11 ارديبهشت روزجهاني كارگر

2010-04-23 Thread maya kordar
اطلاعيه بزرگداشت 11 ارديبهشت روزجهاني كارگر يازدهم ارديبهشت روز بزرگداشت خيزش كارگري براي احقاق حقوق اوليه كارگران مي باشد. . ازهمه كارگران و ساير اقشار منجمله دانشجويان – فرهنگيان – پرستاران و پرسنل بيمارستانها - دانش آموزان ميخواهيم كه با شركت فعال در تظاهرات روز كارگرصداي مظلوميت كارگران را

Re: RPC Obfuscation

2010-04-23 Thread Tercio
Well, I don't have an answer for your question, but why don't you use SSL? I can't trust my data going and coming without been encrypted. This way you don't need to worry about obfuscation. Hope can help. Regards. Tercio On Apr 22, 10:47 am, mmoossen mmoos...@gmail.com wrote: dear all! i

Re: How do I make certain text in a TextBox turn red! - using setText()?

2010-04-23 Thread kozura
Pretty sure can't be done, limitation on the spec of a textbox is it only contains uniform text. You could use a RichTextArea, but you'd have to do some work to make it work like a textbox. On Apr 23, 3:20 am, Navigateur naveen.c...@googlemail.com wrote: I just want to make certain words typed

Re: Switching between fields

2010-04-23 Thread kozura
RootPanel can only contain one widget. So create some panel widget - verticalpanel, flowpanel, etc, add it to RootPanel, and add your widgets to that. Then you can do setVisible to hide/unhide. On Apr 21, 10:57 pm, GWTNewbie venk...@gmail.com wrote: Hi: I am new to GWT. I have 2 widgets

Re: Best CSS practice for complex GWT Widgets using UiBinder

2010-04-23 Thread Roland Bali
Thanks Katharina, that did it! :) /R On Apr 19, 5:57 pm, Katharina Probst kpro...@google.com wrote: You can also change styles in the ui.xml file directly inside a ui:style tag, like so: ui:style   @external gwt-SuggestBox;   @external gwt-SuggestBoxPopup;   .gwt-SuggestBox {    ...  

Re: Transferring an image over an PRC call

2010-04-23 Thread KK
So far.. I have a servlet that can gets image from database and another server that can store image in the database. I am familiar with RPC calls. However, I dont know how to make this two servlet work in my gwt project. I am guessing there is stuff need to be change in xml file. Is can anyone

java.io, java.nio emulation?

2010-04-23 Thread David Given
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I have a requirement to parse MIME email messages on the client. I've found a nice Java library to do this --- mime4j --- but it has dependencies on java.io (string and byte buffer based streams and readers) and java.nio (character set conversion).

Re: new GWT MVP article (part 2)

2010-04-23 Thread jocke eriksson
I think it's a very good explanation on MVP. But one thing that comes to mind is that they should explain why they check for nulls all the time. I think the if statements should be followed by else, at lest empty ones! explaining why it is ok to ignore the call. ex. if (presenter != null) {

Re: GWT + app engine: how do I avoid double-work?

2010-04-23 Thread Ashar Lohmar
you could also take a look at Slim3(http://sites.google.com/site/ slim3appengine/getting-started), I just started to work with it and it seams cool enough. On Apr 23, 5:36 pm, Raphaël Brugier raphael.brug...@gmail.com wrote: Since GWT 2.0 classes with JDO or JPA annations can be serialized over

Re: IsTextBox/widget-specific interfaces

2010-04-23 Thread Stephen Haberman
Or you could use a delegate, as enlightened in the GWT MVP tutorial Part II published earlier this week:http://code.google.com/webtoolkit/articles/mvp-architecture-2.html (the PresenterT interface). Hm? I'm not seeing how a PresenterT interface would let my presenter call, say, the

Re: GWT plugin for eclipse install problem

2010-04-23 Thread xwise
Reinstalling the plugin as admin seems to have done the trick. If this affects all windows 7 users then perhaps it should be mentioned somewhere in the FAQ at least... I never do anything as admin unless I really have to, and I would imagine others would have the same problem, specially with more

Re: Problem with HelloMaps KML Overlay

2010-04-23 Thread Eric Ayers
The URL for the .kml has changed. If you are bulding the GWT sample locally, you need to update it to the new location shown in this patch: http://gwt-code-reviews.appspot.com/377801/show On Wed, Apr 21, 2010 at 9:57 AM, Prabuddha prabuddha.gh...@gmail.com wrote: Hi I am trying to get the

Re: RPC Obfuscation

2010-04-23 Thread nacho
I would like to know too if there anyway to ofuscate the methods On 23 abr, 15:04, Tercio terciofi...@gmail.com wrote: Well, I don't have an answer for your question, but why don't you use SSL? I can't trust my data going and coming without been encrypted. This way you don't need to worry

Re: new GWT MVP article (part 2)

2010-04-23 Thread Paul Stockley
I like the model-view-presenter architecture. However I am not at all sold on mocking out the view and testing just the presenter. The problems is that you are not testing 3 of the potentially most error prone parts of the system: 1) The browser and DOM, 2) The GWT widget library and 3) the GWT

Re: new GWT MVP article (part 2)

2010-04-23 Thread BryanPoit
I was a bit disappointing. The example project wasn't even fully re factored. The edit contacts view and presenter still reflect the old architecture. I think that though these tutorials are helpful its been almost a whole year since part I of the article was posted. Also for trying to make

Unable to find type 'com.foo.client.MyApp'

2010-04-23 Thread Ray
I am getting following error in GWT development console when I try to use Run Configuration from Eclipse. 00:00:20.360 [TRACE] Finding entry point classes 00:00:20.360 [ERROR] Unable to find type 'org.drools.guvnor.client.JBRMSEntryPoint' 00:00:20.407 [ERROR] Hint: Check

EXT-GWT Panel problem

2010-04-23 Thread cool boy
The side border of panel of Ext is not viewed in chrome and other web browser But it is only visible in internet explorer -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

How to add remove icon on TabLayoutPanel

2010-04-23 Thread Lex
Hello there.. First time here, so be gentle with me. :-) I've searched around, but couldn't find the answer to my question, so here it goes. I have added the Tab(s)s to the TabLayoutPanel through UiBinder and programmatically. However, I needed a way to remove this tab from the TabLayoutPanel

Re: new GWT MVP article (part 2)

2010-04-23 Thread Chris Ramsdale
@Bryan, We'll get around to refactoring the EditContact View/Presenter, but the goal was to get the new View/Presenter relationship out there as soon as we could. We think it's a pattern that has worked for internal teams, and we hope that it works for the larger community as well. Regarding the

Re: How to add remove icon on TabLayoutPanel

2010-04-23 Thread kozura
You can use any widget as the element in the tab, so you could create a composite with a label and X cancel button. Here's the doc for doing it programatically:

Eclipse GWT Plug In installation problem

2010-04-23 Thread Swamy
I installed the GWT plug for Eclipse (3.5, Galileo) using the instructions on the web site. Things seemed to work. However, I don't see any option to create a Web Application Project via the menu File == New. Is there some way I can verify that the Eclipse GWT plug-in did install properly by

GWT MVP architecture redirect link page with URL parameters passing

2010-04-23 Thread Mahmoud
Hello, I have followed the MVP structure while developing my project. Once I hit the site URL, the History Manager loads the module by inserting the default token to the history stack and then from there the user can redirect himself to any part of the application by changing the History token,

[gwt-contrib] Re: Introduces Activity and AcitivityManager. (issue398801)

2010-04-23 Thread rjrjr
This still needs checkstyle, javadoc, general tidying. But all the moving parts are there. @cromwellian, if you want to get the lay of the land, this is where to look. http://gwt-code-reviews.appspot.com/398801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r7965 committed - Fixes a bug in SplitLayoutPanel where calling setWidgetMinSize() on th...

2010-04-23 Thread codesite-noreply
Revision: 7965 Author: jlaba...@google.com Date: Thu Apr 22 07:37:11 2010 Log: Fixes a bug in SplitLayoutPanel where calling setWidgetMinSize() on the center widget, the last widget, or a widget that is not a child results in an NPE or IndexOutOfBoundsException. The occured because

[gwt-contrib] [google-web-toolkit] r7966 committed - Add LocaleInfo.hasAnyRTL() which returns true if the application was...

2010-04-23 Thread codesite-noreply
Revision: 7966 Author: gwt.mirror...@gmail.com Date: Thu Apr 22 07:49:33 2010 Log: Add LocaleInfo.hasAnyRTL() which returns true if the application was built with support for any RTL locales. This will be used in improving Bidi support in GWT widgets. Public review at:

[gwt-contrib] [google-web-toolkit] r7969 committed - Turn off strict Record#get() implementaiton until it's more practical...

2010-04-23 Thread codesite-noreply
Revision: 7969 Author: rj...@google.com Date: Thu Apr 22 16:27:00 2010 Log: Turn off strict Record#get() implementaiton until it's more practical to actually request all fields. http://code.google.com/p/google-web-toolkit/source/detail?r=7969 Modified:

[gwt-contrib] [google-web-toolkit] r7970 committed - Sync is for real now. Notes:...

2010-04-23 Thread codesite-noreply
Revision: 7970 Author: amitman...@google.com Date: Thu Apr 22 16:39:32 2010 Log: Sync is for real now. Notes: - introduced an annotation ServerType that is to be put on all *Record objects. It is not visible to the client. - the client sends the 'token' in the annotation to the server. If there

[gwt-contrib] Re: Refactoring Tree code. SideBySideTreeView now uses SimpleCellList, which a protected method tha... (issue390801)

2010-04-23 Thread jlabanca
http://gwt-code-reviews.appspot.com/390801/diff/1/3 File bikeshed/src/com/google/gwt/bikeshed/cells/client/CompositeCell.java (right): http://gwt-code-reviews.appspot.com/390801/diff/1/3#newcode32 bikeshed/src/com/google/gwt/bikeshed/cells/client/CompositeCell.java:32: public class

[gwt-contrib] Re: Refactoring Tree code. SideBySideTreeView now uses SimpleCellList, which a protected method tha... (issue390801)

2010-04-23 Thread jlabanca
committed as r7967 http://gwt-code-reviews.appspot.com/390801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fixes a bug in SplitLayoutPanel where calling setWidgetMinSize() on the center widget, the last ... (issue378802)

2010-04-23 Thread jlabanca
committed as r7965 http://gwt-code-reviews.appspot.com/378802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r7971 committed - Re-rolling r7955: JUnitShell now subclasses DevMode instead of GWTShel...

2010-04-23 Thread codesite-noreply
Revision: 7971 Author: gwt.mirror...@gmail.com Date: Fri Apr 23 09:45:41 2010 Log: Re-rolling r7955: JUnitShell now subclasses DevMode instead of GWTShell. http://gwt-code-reviews.appspot.com/361801/show Review by: jlabanca,jat,spoon,fabbott,amitmanjhi

[gwt-contrib] Add paging/scrolling for tables (issue400801)

2010-04-23 Thread rice
Reviewers: jlabanca, Description: Add paging/scrolling for tables Please review this at http://gwt-code-reviews.appspot.com/400801/show Affected files: M bikeshed/src/com/google/gwt/bikeshed/cells/client/ClickableTextCell.java A

[gwt-contrib] Re: RR : Part 1 : UiBinder reports locations in errors (issue394801)

2010-04-23 Thread bobv
New patch for review. http://gwt-code-reviews.appspot.com/394801/diff/1/2 File user/src/com/google/gwt/uibinder/rebind/MortalLogger.java (right): http://gwt-code-reviews.appspot.com/394801/diff/1/2#newcode102 user/src/com/google/gwt/uibinder/rebind/MortalLogger.java:102: +

[gwt-contrib] Re: Add paging/scrolling for tables (issue400801)

2010-04-23 Thread jlabanca
LGTM http://gwt-code-reviews.appspot.com/400801/diff/1/4 File bikeshed/src/com/google/gwt/bikeshed/list/client/PagingTableListView.java (right): http://gwt-code-reviews.appspot.com/400801/diff/1/4#newcode162 bikeshed/src/com/google/gwt/bikeshed/list/client/PagingTableListView.java:162: public

[gwt-contrib] [google-web-toolkit] r7972 committed - Creating a stabilization branch for 2.1

2010-04-23 Thread codesite-noreply
Revision: 7972 Author: gwt.mirror...@gmail.com Date: Fri Apr 23 10:38:01 2010 Log: Creating a stabilization branch for 2.1 http://code.google.com/p/google-web-toolkit/source/detail?r=7972 Added: /branches/2.1 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Introduces Activity and AcitivityManager. (issue398801)

2010-04-23 Thread rjrjr
http://gwt-code-reviews.appspot.com/398801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Beginnings of GWT implementation of java.util.logging (issue341803)

2010-04-23 Thread unnurg
http://gwt-code-reviews.appspot.com/341803/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Beginnings of GWT implementation of java.util.logging (issue341803)

2010-04-23 Thread unnurg
http://gwt-code-reviews.appspot.com/341803/diff/1/3 File samples/hello/src/com/google/gwt/sample/hello/Hello.gwt.xml (right): http://gwt-code-reviews.appspot.com/341803/diff/1/3#newcode26 samples/hello/src/com/google/gwt/sample/hello/Hello.gwt.xml:26: entry-point