Re: WARNING: Could not open/create prefs root node Software\JavaSoft\Prefs at root 0x80000002. Windows RegCreateKeyEx(...) returned error code 5.

2013-06-14 Thread QingFeng Du
well well, 4 years later, I came across the same problem. here's my solution: open regedit.exe ( really hate Microsoft and their regedit.reg). change the permission of key: HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft.Right click the icon, then change the permission to full operation. On Saturday,

Re: GWT 2.4 Validation Tool not picking up @ExtraTypes on superclasses

2013-06-14 Thread Jonathan Nash
I have a related follow-up question. I was getting a stack overflow at runtime because of the polymorphic hierarchy and was not using @ExtraTypes. My hierarchy was 3 levels deep. Top level is GenericType, next level is CategoryType and EventType, and next level is four subtypes of

Re: GWT-RPC: loose vs. tight coupling

2013-06-14 Thread David
Jens, It would be nice, if somehow we could use an annotation or some external file to direct what implementation that is needed. We sometimes need to send over things for which we are not allowed to change the sources. David On Thu, Jun 13, 2013 at 9:46 PM, Jens jens.nehlme...@gmail.com wrote:

Re: How to play audio from the jar?

2013-06-14 Thread Jens
You either write a servlet that loads the mp3 from the jar and sends it to the client or dont put your audio files into a jar file. If you put your audio files in your war file, e.g. war/audio/file.mp3, then you can access it just like any other html/js file from your war. You could also put

Re: GWT-RPC: loose vs. tight coupling

2013-06-14 Thread Jens
It would be nice, if somehow we could use an annotation or some external file to direct what implementation that is needed. We sometimes need to send over things for which we are not allowed to change the sources. We sometimes need to send over things for which we are not allowed to

Re: Fixing a column in DataGrid

2013-06-14 Thread Raphael André Bauer
On Wed, May 29, 2013 at 7:24 PM, Jens jens.nehlme...@gmail.com wrote: Before deep diving into DataGrid, I think my first make it work approach would be to just use two DataGrids and add both to the same DataProvider, so that their data is in sync with each other. The first one would contain the

Re: Fixing a column in DataGrid

2013-06-14 Thread Jens
Well, add a scroll handler to the right ScrollPanel and set the current scroll position on the left ScrollPanel. -- J. -- 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

Re: GWT-RPC: loose vs. tight coupling

2013-06-14 Thread David
Hi, I tend to fall back to pure JSON(P) more and more, but that comes with other problems (a big leak in our beloved IEwith JSONP for example). The idea that GWT supports RPC with something similar but not quite the same as java serialisation somehow falls appart in many bigger projects.

Re: GWT-RPC: loose vs. tight coupling

2013-06-14 Thread Shaun Tarves
Hi Jens - Thank you for the info. For what it's worth, I was able to successfully use the an interface in the Async service interface and then the implementation in the RemoteService interface. GWT compiled without complaint even though the async method signature was technically different.

LESS/ SASS/... style usage in GWT ?

2013-06-14 Thread Ed
Hi, I am curious how people use LESS/SASS/... etc.. in GWT i.c.m. GWT Clientbundle mechanism? I looking into using this (never did before). Please share your experience? (setup, css parsing, experience, ) -- You received this message because you are subscribed to the Google Groups Google

Design Decision RPC with AsyncDataProvider

2013-06-14 Thread Jochen Schnaidt
Hi all, I need an advice about a design question of my application. I am searching for a best practise for the following setup. Project is about an application for maintaining huge amounts of data from a database. Therefore I implemented a ui with UIBinder and a CellTable, data is

How to set RichTextArea background color in IE10?

2013-06-14 Thread dhoffer
I'm using the following to set the RichTextArea background color which works for Firefox and most IE versions but with IE10 it just ignores the method. After calling the method the developer tools indicate the style was not added/set. Why? How to do this for IE10?

Re: LESS/ SASS/... style usage in GWT ?

2013-06-14 Thread RyanZA
Vaadin has a special linker that should let you use SASS. I haven't tried it though. https://vaadin.com/blog/-/blogs/link-to-the-client-side-from-sass On Friday, June 14, 2013 3:23:43 PM UTC+2, Ed wrote: Hi, I am curious how people use LESS/SASS/... etc.. in GWT i.c.m. GWT Clientbundle

Re: LESS/ SASS/... style usage in GWT ?

2013-06-14 Thread Ed
Vaadin has a special linker that should let you use SASS. I haven't tried it though. https://vaadin.com/blog/-/blogs/link-to-the-client-side-from-sass Thanks for reminding, I almost forgot it :(. I am currious when this will also be available in the core gwt? As Vaadin is now now an GWT

Re: Design Decision RPC with AsyncDataProvider

2013-06-14 Thread Jens
You can set a string identifier to your columns by using Column.setDataStoreName(). The easiest identifier would be the raw database column name. Then you can go through the ColumnSortList of your CellTable, read the database column name and sort order of each sorted column and pass this

Re: LESS/ SASS/... style usage in GWT ?

2013-06-14 Thread Ed Bras
I think the gwt dev team is thinking about CSS SASS support, from the looks of issue 7624: https://code.google.com/p/google-web-toolkit/issues/detail?id=7624 It hasn't become stale yet ... ;) On Fri, Jun 14, 2013 at 4:19 PM, Ed post2edb...@gmail.com wrote: Vaadin has a special linker that

Re: LESS/ SASS/... style usage in GWT ?

2013-06-14 Thread Ryan Chazen
According to that article it will work without Vaadin, and just requires that you replace 'widgetset' with 'module'. How exactly you'd go about doing that is unclear and I haven't tried, but the article definitely seems to be saying that it should work without issue. I've had plans to give it a

Re: LESS/ SASS/... style usage in GWT ?

2013-06-14 Thread Ryan Chazen
It's been (erroneously) merged into issue 8162, which is just a generic CSS3 issue. So I wouldn't get your hopes up too quickly. https://code.google.com/p/google-web-toolkit/issues/detail?can=2q=8162colspec=ID%20Type%20Status%20Owner%20Milestone%20Summary%20Starsid=8162 On Fri, Jun 14, 2013

Re: RequestFactory Issue 6115

2013-06-14 Thread Nermin
Hello Thomas, Open Session In View is the right approach to go for. Thank you for this advice! I have implemented it and it works fine now. However, I have one question regarding OSIV-Pattern: In the Hybernate example (see link below) they *begin transaction* before doFilter() and *commit on

Re: Uibinder inheriting and extending css classes (not just sharing them), best method?

2013-06-14 Thread Joseph Lust
Seth, Currently I can do this by setting ui:style src='relativepath/MyCss.css in A and B and it works nicely, uibinder takes care of injecting the styles and everything. However I'm not sure if this is the best way. There's also the issue that if I move A and B then the relative path

Re: Best practices for inlining build (revision) number into GWT App?

2013-06-14 Thread Joseph Lust
Thanks for sharing. That's what I was using before. A real *chicken and the egg *problem while I sounds so simple in principle. I've also pondered a direct string replacement against the compiles JS files (i.e. $$BUILD_NUMBER) with filters in the war building plugin as ostensibly strings are

Re: CodeMirror and GWT.

2013-06-14 Thread Joseph Lust
Håvard Moås, checkout the Chrome Markdown extensionhttps://chrome.google.com/webstore/detail/markdown-here/elifhakcjgalahccnjkneoccemfahfoa?hl=ento format code for these forums. :) Sincerely, Joseph -- You received this message because you are subscribed to the Google Groups Google Web

Is ValueProxy similar to AutoBean type object?

2013-06-14 Thread Yan
Hi, With my GWT 2.5.1, I am revisit the way I am using EntityProxy. There is an existing post about a parent entity proxy holding a list of children entity proxy, changes in children in UI does not trigger an update in backend. So, I thought to change to use ValueProxy, that way, I do not

Re: Uibinder inheriting and extending css classes (not just sharing them), best method?

2013-06-14 Thread GWTter
Hi Joseph, Thanks for the reply. You're right and I actually do this elsewhere extending cssresource interfaces and using the @shared which also works; it's definitely the way to go for larger extensions/additions that aren't as local. However what I like about the ui:binder approach is you

Re: How to play audio from the jar?

2013-06-14 Thread Magnus
Hi Jens, so the URL would be /audio/file.mp3? Where is the root? And is mp3 a format that most browsers support? Thanks Magnus Am Freitag, 14. Juni 2013 10:27:52 UTC+2 schrieb Jens: You either write a servlet that loads the mp3 from the jar and sends it to the client or dont put your audio

Re: Problem in sending large size of data from GWT client to server by cross domain scripting

2013-06-14 Thread Shashank Beerla
if u knw the answer y dont u give a detail procedure to follow instead scribblin somethin in vague On Thursday, May 12, 2011 4:09:52 AM UTC-4, Thomas Broyer wrote: There are tricks using a hidden form (FormPanel in GWT), but well, they're a bit hackish... (what's hackish is communicating the

[gwt-contrib] Change in gwt[master]: FileUpload: extending FocusWidget instead of Widget so as it...

2013-06-14 Thread Manuel Carrasco Moñino
Hello Thomas Broyer, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/3211 to look at the new patch set (#3). Change subject: FileUpload: extending FocusWidget instead of Widget so as it exposes many features which already are in the file-input

[gwt-contrib] Change in gwt[master]: FileUpload: extending FocusWidget instead of Widget so as it...

2013-06-14 Thread Manuel Carrasco Moñino
Hello Thomas Broyer, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/3211 to look at the new patch set (#4). Change subject: FileUpload: extending FocusWidget instead of Widget so as it exposes many features which already are in the file-input

[gwt-contrib] Change in gwt[master]: FileUpload: extending FocusWidget instead of Widget so as it...

2013-06-14 Thread Manuel Carrasco Moñino
Hello Thomas Broyer, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/3211 to look at the new patch set (#5). Change subject: FileUpload: extending FocusWidget instead of Widget so as it exposes many features which already are in the file-input

[gwt-contrib] Change in gwt[master]: Use JSON.parse() instead of eval() to deserialize rpc callba...

2013-06-14 Thread Leif Åstrand
Leif Åstrand has posted comments on this change. Change subject: Use JSON.parse() instead of eval() to deserialize rpc callback payload .. Patch Set 11: The existing test suite seems to have quite good coverage, but it

[gwt-contrib] Change in gwt[master]: Adding a DOM clear method to RootPanel

2013-06-14 Thread Manuel Carrasco Moñino
Manuel Carrasco Moñino has posted comments on this change. Change subject: Adding a DOM clear method to RootPanel .. Patch Set 7: Sorry if I come later to this change, but I am wondering if Should'nt it preserve gwt

Re: [gwt-contrib] Issue 8083, needs some input from GWT team

2013-06-14 Thread David
Hi, Theoretically you are absolutely right. But practically is another discussion, I am talking about thousands of lines that need to change just for the GUI tier limitations. The GUI is just a fraction of the application because the same Request/Response objects are used internally as well

[gwt-contrib] Change in gwt[master]: Adding a DOM clear method to RootPanel

2013-06-14 Thread Daniel Kurka
Daniel Kurka has posted comments on this change. Change subject: Adding a DOM clear method to RootPanel .. Patch Set 7: @Manuel good catch. We do not need to care about the History Frame (I looked it up before submitting

[gwt-contrib] Change in gwt[master]: making RootPanel.clear(true) respects GWT loader iframei

2013-06-14 Thread Daniel Kurka
Daniel Kurka has uploaded a new change for review. https://gwt-review.googlesource.com/3430 Change subject: making RootPanel.clear(true) respects GWT loader iframei .. making RootPanel.clear(true) respects GWT loader

[gwt-contrib] Manuel (google-web-toolkit-contributors@googlegroups.com)

2013-06-14 Thread Daniel Kurka (Google Drive)
I've shared an item with you: Manuel https://docs.google.com/document/d/1-y6jum0PO7rRqLu7IBtm1PKxJ21eGlIXl_XDjz2NNcc/edit?usp=sharing It's not an attachment -- it's stored online. To open this item, just click the link above. -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Change in gwt[master]: making RootPanel.clear(true) respects GWT loader iframei

2013-06-14 Thread Manuel Carrasco Moñino
Manuel Carrasco Moñino has posted comments on this change. Change subject: making RootPanel.clear(true) respects GWT loader iframei .. Patch Set 1: (2 comments) File

[gwt-contrib] Change in gwt[master]: making RootPanel.clear(true) respects GWT loader iframei

2013-06-14 Thread Daniel Kurka
Daniel Kurka has posted comments on this change. Change subject: making RootPanel.clear(true) respects GWT loader iframei .. Patch Set 1: (2 comments) File

[gwt-contrib] Change in gwt[master]: making RootPanel.clear(true) respects GWT loader iframei

2013-06-14 Thread Daniel Kurka
Hello Leeroy Jenkins, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/3430 to look at the new patch set (#2). Change subject: making RootPanel.clear(true) respects GWT loader iframei

[gwt-contrib] Change in gwt[master]: making RootPanel.clear(true) respects GWT loader iframe

2013-06-14 Thread Daniel Kurka
Hello Leeroy Jenkins, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/3430 to look at the new patch set (#3). Change subject: making RootPanel.clear(true) respects GWT loader iframe

[gwt-contrib] Change in gwt[master]: making RootPanel.clear(true) respects GWT loader iframe

2013-06-14 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: making RootPanel.clear(true) respects GWT loader iframe .. Patch Set 1: (1 comment) File

[gwt-contrib] Change in gwt[master]: making RootPanel.clear(true) respects GWT loader iframe

2013-06-14 Thread Daniel Kurka
Hello Leeroy Jenkins, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/3430 to look at the new patch set (#4). Change subject: making RootPanel.clear(true) respects GWT loader iframe

[gwt-contrib] Change in gwt[master]: making RootPanel.clear(true) respects GWT loader iframe

2013-06-14 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: making RootPanel.clear(true) respects GWT loader iframe .. Patch Set 4: Code-Review+1 (1 comment) File

[gwt-contrib] Change in gwt[master]: making RootPanel.clear(true) respects GWT loader iframe

2013-06-14 Thread Daniel Kurka
Hello Thomas Broyer, Leeroy Jenkins, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/3430 to look at the new patch set (#5). Change subject: making RootPanel.clear(true) respects GWT loader iframe

[gwt-contrib] Change in gwt[master]: making RootPanel.clear(true) respects GWT loader iframe

2013-06-14 Thread Daniel Kurka
Daniel Kurka has posted comments on this change. Change subject: making RootPanel.clear(true) respects GWT loader iframe .. Patch Set 4: (1 comment) File

Re: [gwt-contrib] Issue 8083, needs some input from GWT team

2013-06-14 Thread Brian Slesinsky
Okay, fair enough. Making BigDecimal deserialize faster would certainly be a good thing. I just don't want it to result in hard-to-diagnose errors if there's some kind of mismatch between client and server. If there's any difference then we should probably have a configuration property or an

[gwt-contrib] Change in gwt[master]: FileUpload: extending FocusWidget instead of Widget so as it...

2013-06-14 Thread Matthew Dempsky
Matthew Dempsky has posted comments on this change. Change subject: FileUpload: extending FocusWidget instead of Widget so as it exposes many features which already are in the file-input element: click(), focus(), mouseevents, keyevents, etc.

[gwt-contrib] Change in gwt[master]: Ensure clinits get called for JSO instance methods.

2013-06-14 Thread Matthew Dempsky
Matthew Dempsky has posted comments on this change. Change subject: Ensure clinits get called for JSO instance methods. .. Patch Set 2: (3 comments) File

[gwt-contrib] Change in gwt[master]: Ensure clinits get called for JSO instance methods.

2013-06-14 Thread Colin Alworth
Colin Alworth has posted comments on this change. Change subject: Ensure clinits get called for JSO instance methods. .. Patch Set 2: (2 comments) File

Re: [gwt-contrib] Work to do for bug 3042

2013-06-14 Thread Brian Slesinsky
Another possibility would be to develop a nicer GWT RichTextArea as a separate open source project. There's no reason it has to be in core GWT right away and you'll be able to work faster that way. With real-world usage, you'll probably learn a few things that will make it better quality if we do

[gwt-contrib] Change in gwt[master]: Ensure clinits get called for JSO instance methods.

2013-06-14 Thread Roberto Lublinerman
Roberto Lublinerman has posted comments on this change. Change subject: Ensure clinits get called for JSO instance methods. .. Patch Set 2: Code-Review+1 (1 comment) File

Re: [gwt-contrib] Work to do for bug 3042

2013-06-14 Thread Goktug Gokdogan
Agreed. We don't need to provide a complex RichTextArea for GWT out of the box. It makes sense to quickly iterate on it in a different open source project. In the meantime, if you end up having small patches to improve the existing one in GWT, feel free to send them. On Fri, Jun 14, 2013 at 3:34

[gwt-contrib] Working on a patch to fix Exception wrapping/unwrapping in compiler

2013-06-14 Thread Goktug Gokdogan
I just wanted to give you a heads up that Roberto and I are working on a compiler patch so that catch statement will not break js originated exceptions. To give you some background, if you put any try/catch statement in Java, js originated exceptions will be converted into JavaScriptException

[gwt-contrib] Change in gwt[master]: FileUpload: extending FocusWidget instead of Widget so as it...

2013-06-14 Thread Manuel Carrasco Moñino
Manuel Carrasco Moñino has posted comments on this change. Change subject: FileUpload: extending FocusWidget instead of Widget so as it exposes many features which already are in the file-input element: click(), focus(), mouseevents, keyevents, etc.