Re: ValueProxy inheritance trouble, always load properties

2013-02-19 Thread Thomas Broyer
No, it's due to RF support for polymorphism of proxies. Simply break the inheritance relationship between Data and DataDetail and it'll all work as you expect. If you want to share properties between them then define an intermediate interface that does NOT extend ValueProxy: interface

Re: CellTable - how to change icon positon?

2013-02-19 Thread Alex opn
Have a look at the CwCustomDataGridhttp://code.google.com/p/google-web-toolkit/source/browse/trunk/samples/showcase/src/com/google/gwt/sample/showcase/client/content/cell/CwCustomDataGrid.java?r=10597from the showcase. You'll have to create a custom header builder

DataGrid - selection jumps onto the first entry on deletion?

2013-02-19 Thread membersound
Hi, I have a DataGrid, and on deleting an entry with dataProvider.remove(singleSelectionModel.getSelectedObject()); the selection jumps right onto the first field in the Grid. However, executing the deletion again (by a Button), the visibly selected first element is NOT deleted. Thus, somehow

Re: CellTable - how to change icon positon?

2013-02-19 Thread membersound
Hm to my that seems to be a bit overkill for just changing the icon place. And what is more - looking at the showcase from http://gwt.googleusercontent.com/samples/Showcase/Showcase.html#!CwCustomDataGrid - the icon will be aligned at most right position of the cell. But that's not what I

Re: Eclipse not recognizing GWT on auto import

2013-02-19 Thread membersound
Do other imports work? No: maybe reinstall eclipse. Yes: import an existing example project and try if imports work there. Or create a gwt archetype (if that exists)? Am Montag, 18. Februar 2013 21:08:02 UTC+1 schrieb Bill Doss: Hi, When I click on the little red X, which appears when I

Re: Custom GWT CellTree To open its nodes on a click of the whole Text and not just a pointer(image) on to its left

2013-02-19 Thread membersound
You're always welcome to share your solution, at least hints for others searching later for those kind of issues. Am Dienstag, 19. Februar 2013 07:03:40 UTC+1 schrieb magesh kumar: Finally i managed to get a solution.. On Friday, 15 February 2013 04:46:33 UTC+5:30, Tomek Kańka wrote:

Re: DataGrid - selection jumps onto the first entry on deletion?

2013-02-19 Thread Jens
DataGrid has two selections. In its default style darkblue is the selection stored in the selection model while a yellowish selection is the keyboard selection to let you know where you are while navigating with the keyboard. Maybe you have defined the same color for both so you cant

DataGrid footer with ClickableTextCell not clickable in chrome

2013-02-19 Thread membersound
Hi, I have a DataGrid with a custom footer (Header element). The footer is just a ClickableTextCell which has a custom onEnterKeyDown() for the action. Now, I defined 2 columns in absolutely the same way. For one, the curser hand is shown and action executes as expected. For the other, the

Re: DataGrid - selection jumps onto the first entry on deletion?

2013-02-19 Thread membersound
Ah ok, that makes it much clearer. I found out that I can only delete a cell if I click it before. If I click it and use the keyboard to navigate away from it, I cannot delete it anymore. Also on deleting of mouse-selected object, the keyboard focus seems to be set to the first element in the

Re: DataGrid - selection jumps onto the first entry on deletion?

2013-02-19 Thread Jens
DataGrid.setKeyboardSelectionPolicy(KeyboardSelectionPolicy.BOUND_TO_SELECTION) should make the keyboard selection the same as the contents of your selection model. -- J. Am Dienstag, 19. Februar 2013 12:21:07 UTC+1 schrieb membersound: Ah ok, that makes it much clearer. I found out that I

Disable Chrome focus outline in general?

2013-02-19 Thread membersound
Hi, how can I disable the yellow/orange Chrome focus outline border in general on all objects, whatsoever they are? I already have the outline: none !important; property on eg gwt button, input. But time and again I find components which suddently have again the outline. Can I disable this in

Re: DataGrid - selection jumps onto the first entry on deletion?

2013-02-19 Thread membersound
Great, that seems to work at least. Still I'm not succeeding in disabling the initial selection of the first entry in the DataGrid after selected row has been deleted. That's a real problem, because I trigger deletes with DEL key, and if I keep it pressed this would start to delete the whole

PopupPanel - set animation time?

2013-02-19 Thread membersound
Hi, how can I set the animation time of a PopupPanel? I could of course copy the whole class and change private static final int ANIMATION_DURATION; to my needs. But that's very unlucky, are there other possibilities? -- You received this message because you are subscribed to the Google

Re: PopupPanel - set animation time?

2013-02-19 Thread Krzysztof Retel
Hi, PopupPanel has method setAnimation which takes as argument PopupPanel.ResizeAnimation. So you can create your own ResizeAnimation and specify the duartion on method run. Check API:

Re: Eclipse not recognizing GWT on auto import

2013-02-19 Thread Bill Doss
Other imports work, even the lib-gwt-svg from Vectomatic that I added. I copied one of the samples from the gwt directory (Hello) and tried to import it via create project from existing ant build but that didn't work. This is not a show stopper. But it is annoying. :( On Tuesday, February

Re: PopupPanel - set animation time?

2013-02-19 Thread Krzysztof Retel
sorry, thought I placed the latest API link: http://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/user/client/ui/PopupPanel.html On Tuesday, February 19, 2013 1:44:42 PM UTC, Krzysztof Retel wrote: Hi, PopupPanel has method setAnimation which takes as argument

Re: PopupPanel - set animation time?

2013-02-19 Thread Krzysztof Retel
sorry, thought I placed the latest API link: http://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/user/client/ui/PopupPanel.html -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop

GWT Safari 6 Image setUrl leads to Maximum call stack size exceeded

2013-02-19 Thread Maxim Schäfner
Hi GWT community, we are trying to reset an image content through setting the URL to an empty string setUrl(). On other browsers like Firefox18 and the older the older Safari 5 it work as aspected. But when done on Safari 6, we get lot of Exceptions:

GWT - nothing in the browser

2013-02-19 Thread Kris
Hi, I am new to GWT and made a little test. In the GWT Designer it looks fine. But when deployed on my JBoss nothing is in the browser. I have attached the client java file and the html file. Thanks -- You received this message because you are subscribed to the Google Groups Google Web

Re: DataGrid footer with ClickableTextCell not clickable in chrome

2013-02-19 Thread Thomas Broyer
https://code.google.com/p/google-web-toolkit/issues/detail?id=7576 On Tuesday, February 19, 2013 12:14:13 PM UTC+1, membersound wrote: Hi, I have a DataGrid with a custom footer (Header element). The footer is just a ClickableTextCell which has a custom onEnterKeyDown() for the action.

Re: GWT - nothing in the browser

2013-02-19 Thread Jens
Check if dashboard/dashboard.nocache.jshttps://google-web-toolkit.googlegroups.com/attach/31b4b30a48caec9/dashboard/dashboard.nocache.jscan be loaded from your server. Using Chrome and its DevTools or FireFox with FireBug you can see network requests and if any of them fails with a 404 not

Re: GWT - nothing in the browser

2013-02-19 Thread Kris
http://localhost:8080/dashboard/dashboard.nocache.js returns 404 Looks like when I create the war file with maven it works fine, but when creating an ear file with the war file inside the dashboard.nocache.js is not there On Tuesday, February 19, 2013 9:12:18 AM UTC-8, Jens wrote: Check if

Re: GWT - nothing in the browser

2013-02-19 Thread Kris
Well, it actually is there. !!! On Tuesday, February 19, 2013 9:51:44 AM UTC-8, Kris wrote: http://localhost:8080/dashboard/dashboard.nocache.js returns 404 Looks like when I create the war file with maven it works fine, but when creating an ear file with the war file inside the

Re: GWT - nothing in the browser

2013-02-19 Thread Kris
http://localhost:8080/dashboard/dashboard/dashboard.nocache.js returns the js file. On Tuesday, February 19, 2013 9:12:18 AM UTC-8, Jens wrote: Check if dashboard/dashboard.nocache.jshttps://google-web-toolkit.googlegroups.com/attach/31b4b30a48caec9/dashboard/dashboard.nocache.jscan be

Re: Disable Chrome focus outline in general?

2013-02-19 Thread Joe Attardi
What is the CSS rule you're using? Are you using the :focus pseudo-class? On Tue, Feb 19, 2013 at 7:28 AM, membersound kodyreco...@gmail.com wrote: Hi, how can I disable the yellow/orange Chrome focus outline border in general on all objects, whatsoever they are? I already have the

Re: [POLL] Maven project layout, what to standardize?

2013-02-19 Thread Rich
Thomas, Thanks very much for the response. First, is there any way you can share a POM from one of your projects -- or ideally point me at an entire open source project that uses it? Many things aren't clear (to me) from the docs. Examples: 1). You say add a resource tag. The problem is if

Re: [POLL] Maven project layout, what to standardize?

2013-02-19 Thread Rich Burdon
Inline. On Sun, Feb 17, 2013 at 2:12 PM, Thomas Broyer t.bro...@gmail.com wrote: Hmm, there's https://github.com/tbroyer/gwt-sandbox/blob/master/user/gwt-user-core/pom.xml but this is work in progress, and unnecessary complicated in some places. This is ongoing work to moving GWT itself

Re: How to call javascript mehtod which is defined in another.js file in GWT client

2013-02-19 Thread Faissal Graviton
Hello, I can't get it work. I added the script tag to the html hosting page and still get the exception: Cannot call method 'info' of undefined Thanks On Tuesday, September 18, 2007 11:46:08 PM UTC, Sumit Chandel wrote: Hi Rinku, Actually, your initial setup to include the external

Re: GWT 2.5.0-rc1 and eclipse (3.7 and 4.2) problems

2013-02-19 Thread Robert Hoffmann
+1 Same problem since GWT 2.5 (also with GWT 2.5.1-rc1) -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com.

Re: GWT 2.5.0-rc1 and eclipse (3.7 and 4.2) problems

2013-02-19 Thread Robert Hoffmann
ERROR: Deferred binding failed for 'com.google.gwt.useragent.client.UserAgentAsserter.UserAgentProperty'; expect subsequent failures ERROR: Error while executing the JavaScript provider for property 'user.agent' com.google.gwt.core.client.JavaScriptException: (TypeError)

Re: GWT 2.5.0-rc1 and eclipse (3.7 and 4.2) problems

2013-02-19 Thread Jens
Does the error go away when you delete the folder war/appname ? I think your war/appname/hosted.html page is maybe outdated and needs to be regenerated by GWT DevMode. -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe

Re: GWT 2.5.0-rc1 and eclipse (3.7 and 4.2) problems

2013-02-19 Thread Dr. Robert Hoffmann
So the problem occurs when I use DevMode and either omit the user.agent definition or specify set-property name=user.agent value=safari/ What seems to have a stable positive effect is to use: set-property name=user.agent value=safari, gecko1_8/ Note: before, I was trying all kind of

Re: RPC call in Activity onStop()

2013-02-19 Thread yves
Not any suggestion ? Thanks Yves Le dimanche 17 février 2013 23:47:12 UTC+1, yves a écrit : Hi, After a search on the net I didn't find an answer to this problem : I need to make an RPC call from the onStop() function in order to inform the server that the application is closing.

Re: RPC call in Activity onStop()

2013-02-19 Thread Jens
I don't see why it should not work. You can do an RPC request in Activity.onStop() but you have to be aware of the fact that the activity will continue to stop while the request is pending. So your request's callback should not do anything that depends on the activity state or its view (which

Re: RPC call in Activity onStop()

2013-02-19 Thread K vfdsdfbsdb
hi. do you use onStop of Activiti interface? if you use it, it is call when it's wiget is clised. 2013/02/18 7:47 yves yves.ko...@gmail.com: Hi, After a search on the net I didn't find an answer to this problem : I need to make an RPC call from the onStop() function in order to inform the

Are there any style templates?

2013-02-19 Thread membersound
Hi, just being curious: are there any gwt style templates out yet? Or am I restricted using the default ones (or of course creating some on my own)? Thanks -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group

Re: Disable Chrome focus outline in general?

2013-02-19 Thread Kody
No I'm just using eg: .gwt-Button { outline: none !important; } But looking for a way to general prevent this in chrome. 2013/2/19 Joe Attardi j...@attardi.net What is the CSS rule you're using? Are you using the :focus pseudo-class? On Tue, Feb 19, 2013 at 7:28 AM, membersound

Re: Custom GWT CellTree To open its nodes on a click of the whole Text and not just a pointer(image) on to its left

2013-02-19 Thread magesh kumar
Yea Sure There is a onBrowserEvent in the CellTree.. @Override public void onBrowserEvent(Event event) { AonCellBasedWidgetImpl.get().onBrowserEvent(this, event); if (isRefreshing) { // Ignore spurious events (onblur) while replacing elements. return; }

[gwt-contrib] caching EntityProxy instances on the client between sessions

2013-02-19 Thread Zied Hamdi OneView
Hi All, I have an issue with caching a list of almost static EntityProxies on the client side. First I checked the possibility to mark the url as cachable but since RequestFactory urls are generated by GWT, it seamed too complicated to do. I then decided to cache the EntityProxies in

[gwt-contrib] Change in gwt[master]: Removes deprecated com.google.gwt.benchmarks.*

2013-02-19 Thread Goktug Gokdogan
Goktug Gokdogan has uploaded a new change for review. https://gwt-review.googlesource.com/1970 Change subject: Removes deprecated com.google.gwt.benchmarks.* .. Removes deprecated com.google.gwt.benchmarks.* Change-Id: