Exception-undefined is not a function(While adding anchor to htmlpanel)

2014-10-08 Thread Mohammed Sameen
Hi, I am getting exception while adding the Anchor to HTMLPanel,Below is the code private HTMLPanel panel; private HorizontalPanel hPanel=new HorizontalPanel();; Anchor anchor=new Anchor(); anchor.setVisible(true); anchor.getElement().setPropertyString(id, hintButton); public void

Re: Attaching Source Maps when injecting external java script file

2014-10-08 Thread Thomas Broyer
On Wednesday, October 8, 2014 4:31:45 AM UTC+2, Milan Cvejic wrote: Actual problem is using minified version of jQuery library that is hosted on some other servers (eg. google) and I can not change that. Therefore I am asking is there any way to make GWT to include source maps when

Re: Exception-undefined is not a function(While adding anchor to htmlpanel)

2014-10-08 Thread Thomas Broyer
There might have been an error injecting the JSNI into the page. I'd strongly suggest you try Super Dev Mode (this will be the default in GWT 2.7; I'd suggest you try 2.7.0-SNAPSHOT, JARs are available from https://oss.sonatype.org/content/repositories/google-snapshots/com/google/gwt/ , the

Re: Exception-undefined is not a function(While adding anchor to htmlpanel)

2014-10-08 Thread Mohammed Sameen
Thanks Thomas,But i cant upgrade to GWT 2.7 right now i am using 2.6.Is there any other way? On Wednesday, October 8, 2014 11:42:29 AM UTC+5:30, Mohammed Sameen wrote: Hi, I am getting exception while adding the Anchor to HTMLPanel,Below is the code private HTMLPanel panel; private

Re: Exception-undefined is not a function(While adding anchor to htmlpanel)

2014-10-08 Thread Naveen Ng
Hi.. Since anchor is global variable, and you are trying to remove the parent widget means (panel) so anchor reference will also remove from the parent and the reference will be setting as null, when you call the createPanel() method second time, anchor reference will be null, so

Re: Exception-undefined is not a function(While adding anchor to htmlpanel)

2014-10-08 Thread Mohammed Sameen
Thanks Naveen,But its not throwing nullpointer exception i checked that also anchor is intialized its not holding null value.. On Wednesday, October 8, 2014 11:42:29 AM UTC+5:30, Mohammed Sameen wrote: Hi, I am getting exception while adding the Anchor to HTMLPanel,Below is the code

GWT project not picking the css and images from some other GWT maven project added as dependency?

2014-10-08 Thread Mohammed Sameen
Hi, I have created my Widget Library using GWT as Maven Project.On top of that i am applying Some CSS and Images to get responsiveness that has injected using ClientBundle.When i add this dependency project in some other project its unable to load the Images from my Widget Library.How to Solve

How GWT Compiler adds the default theme content to war?

2014-10-08 Thread Mohammed Sameen
Hi, Can one explain me how GWT Compiler add the (Standard,Chrome,Dark)default theme content(Static content) to the war directory If we Compiles the GWT Project? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this

Re: New Widget: Window Panel (minimize, maximize/restore, close, resize)

2014-10-08 Thread Mohammed Sameen
Hi Jeo,good work but its not giving responsiveness.. On Thursday, December 3, 2009 3:32:37 PM UTC+5:30, Joe wrote: Hello everyone, please check out this new widget I have built called: WindowPanel. It extends DialogBox widget and it contains no JSNI code. It has 4 functionalities:

Re: How GWT Compiler adds the default theme content to war?

2014-10-08 Thread Jens
GWT has the concept of public resources. In your GWT module you can use public path=/ to define a folder that contains public resources. There resources will be copied by GWT to your module output directory, e.g. war/app/. By default GWT assumes a public resource folder named public,

Re: GWT project not picking the css and images from some other GWT maven project added as dependency?

2014-10-08 Thread Joseph Lust
Don't depend on resources in the *public/* directory. Use resource bundles and all downstream consumers of your library won't have a problem with resources. They will just flow right through. Joe -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: Exception-undefined is not a function(While adding anchor to htmlpanel)

2014-10-08 Thread Thomas Broyer
On Wednesday, October 8, 2014 12:48:50 PM UTC+2, Mohammed Sameen wrote: Thanks Thomas,But i cant upgrade to GWT 2.7 right now i am using 2.6.Is there any other way? Super Dev Mode exists since 2.5, it's just easier to use (and faster!) with 2.7 than in previous versions. To get the ease

Re: Ignore place change on bookmark click

2014-10-08 Thread samo
The solution was to modify the DefaultHistorian by overriding addValueChangeHanlder. I was then able to inspect the value change event before passing it along to the PlaceHistoryHandler. PlaceHistoryHandler historyHandler=new PlaceHistoryHandler( getPlaceHistoryMapper(),getHistorian()); public

[gwt-contrib] Can't get 'ant test' to pass it times out

2014-10-08 Thread Scott Morgan
Hi All, I am trying to contribute NoSuchFieldError (and it's parent classes) to GWT. I have not been able to get get the 'ant test' target to work, my most recent attempt is getting a timeout after 5 hours :( BUILD FAILED /home/scott/gwt-src/trunk/build.xml:162: The following error

[gwt-contrib] Re: RFE: deprecate user.client.Element and user.client.DOM

2014-10-08 Thread Thomas Broyer
On Wednesday, October 8, 2014 12:55:53 AM UTC+2, Colin Alworth wrote: Sorry for the thread necromancy, but aside from https://groups.google.com/d/topic/google-web-toolkit-contributors/90PSQ7wKHtI/discussion this was the only relevant existing conversation I could find on the topic. In

[gwt-contrib] Re: GWT 2.7 release plan

2014-10-08 Thread confile
Hi Daniel, this issue ( https://code.google.com/p/google-web-toolkit/issues/detail?id=8938) should be included in GWT 2.7. Best Michael Am Mittwoch, 1. Oktober 2014 21:15:26 UTC+2 schrieb Daniel Kurka: Hi all, we just settled on a GWT 2.7 release plan: - We *code freeze* on *October

[gwt-contrib] Re: Can't get 'ant test' to pass it times out

2014-10-08 Thread Jens
Hmm instead of ant I mostly use Eclipse to run tests. To do so I enable the GPE plugin for gwt-user/gwt-dev projects in Eclipse and then run tests as usual. Since GPE picks up the GWT source project as SDK it works quite well for me. -- J. -- You received this message because you are

Re: [gwt-contrib] Re: Can't get 'ant test' to pass it times out

2014-10-08 Thread Manuel Carrasco MoƱino
Just for your information, I was writing a document explaining how to run tests from command line, I have taken advantage of this thread to commit a first version to gerrit, feel free to play with the examples and make suggestions. https://gwt-review.googlesource.com/#/c/9552/ On Wed, Oct 8,

[gwt-contrib] Re: GWT 2.7 release plan

2014-10-08 Thread hypnoce
Hi, thank you all for your hard work. We have been using GWT and SDM with great success in a big financial software company :). There is one major feature that is still not merged : NavigableMap https://gwt-review.googlesource.com/#/c/3650/ Will it be possible to have it in the 2.7 realease ?

[gwt-contrib] Re: RFE: deprecate user.client.Element and user.client.DOM

2014-10-08 Thread Colin Alworth
Not quite. Anything that continues to return user.client.Element can only be overridden to return user.client.Element or a subclass. To pick a case at random (ahem, GXT), say you want to override UiObject.getElement for whatever reason. GWT 2.6-2.7 means that we can't change that return type,

Re: [gwt-contrib] GWT 2.7 JsInterop Handle static JavaScript Functions

2014-10-08 Thread confile
@Ray Cromwell will the @Entry annotation for JSInterop be included in GWT 2.7? I think this is essential to handle errors raised by JavaScript. Am Sonntag, 5. Oktober 2014 08:32:26 UTC+2 schrieb Ray Cromwell: Using default methods in Java8 is exactly how we plan to allow specifying method

Re: [gwt-contrib] GWT 2.7 JsInterop Handle static JavaScript Functions

2014-10-08 Thread 'Goktug Gokdogan' via GWT Contributors
We are not really making a release for JsInterop for 2.7 and it is not meant to be used in production and missing a lot of stuff. The released stuff is just something that people can play with and give some feedback. On Wed, Oct 8, 2014 at 10:31 AM, confile michael.gorsk...@googlemail.com wrote:

Re: [gwt-contrib] Re: GWT 2.7 release plan

2014-10-08 Thread 'Goktug Gokdogan' via GWT Contributors
There are a few things we need to do. I will talk with Andrei and see if we can make it. On Wed, Oct 8, 2014 at 7:54 AM, hypn...@donarproject.org wrote: Hi, thank you all for your hard work. We have been using GWT and SDM with great success in a big financial software company :). There is

Re: [gwt-contrib] Re: RFE: deprecate user.client.Element and user.client.DOM

2014-10-08 Thread Thomas Broyer
On Wed, Oct 8, 2014 at 7:11 PM, Colin Alworth niloc...@gmail.com wrote: Not quite. Anything that continues to return user.client.Element can only be overridden to return user.client.Element or a subclass. Ha, didn't thought about subclassing w/ overriding. To pick a case at random (ahem,

[gwt-contrib] GWT 2.7

2014-10-08 Thread Marcio Alves
Hi!, Is there a easy way to download the GWT 2.7 SDK to help with the tests? Thanks! -- You received this message because you are subscribed to the Google Groups GWT Contributors group. To unsubscribe from this group and stop receiving emails from it, send an email to

[gwt-contrib] Re: GWT 2.7

2014-10-08 Thread Thomas Broyer
On Wednesday, October 8, 2014 6:49:30 PM UTC+2, Marcio Alves wrote: Hi!, Is there a easy way to download the GWT 2.7 SDK to help with the tests? Thanks! There are snapshots deployed nightly (when the build is green) to https://oss.sonatype.org/content/repositories/google-snapshots/

Re: [gwt-contrib] Re: RFE: deprecate user.client.Element and user.client.DOM

2014-10-08 Thread Colin Alworth
On Wednesday, October 8, 2014 5:16:18 PM UTC-5, Thomas Broyer wrote: On Wed, Oct 8, 2014 at 7:11 PM, Colin Alworth nilo...@gmail.com javascript: wrote: Not quite. Anything that continues to return user.client.Element can only be overridden to return user.client.Element or a subclass.