Re: Chrome GWT Plugin required but is already installed

2015-01-12 Thread Chad Vincent
Plugin also still works in 32-bit Chrome 39.0.2171.95 m on Windows. On Sunday, January 11, 2015 at 5:10:24 AM UTC-6, Thomas Broyer wrote: > > > > On Friday, January 9, 2015 at 11:55:54 PM UTC+1, SHANKAR REDDY wrote: >> >> I was using GWT one year back and returned here to work on new >> developme

IE Request Addon "Apple" when using Google GWT

2015-01-12 Thread Frank Simon
Hello, we have a strange effect on MSIE 11 in our Google GWT Project. At one point the IE ask to install an Addon "Apple" (siehe Screenshot). We have no clue, where this Addon come from. Any hints ? Frank -- You received this message because you are subscribed to the Google Groups "Google W

Re: JSNI - how to reference a CSS client bundle?

2015-01-12 Thread Kushal Jain
Thanks Jens I found my mistake on this line. var css = style.@com.ruchi.bundle.client.Button::gwtbutton()(); >> >> > I fixed the button thing, and i got the solution thanks. http://www.enggheads.com/#!question/1421080044931 -- You received this message because you are subscribed to the Goo

Re: JSNI - how to reference a CSS client bundle?

2015-01-12 Thread Jens
> var lib = @com.ruchi.bundle.client.Resource::INSTANCE; > var style = lib.@com.ruchi.bundle.client.Resource::button()(); > var css = style.@com.ruchi.bundle.client.Button::gwtbutton()(); > > i tried this but i got class cast exception. > Why do you write: style.@com.ruchi.bundle.client.Bu

Re: JSNI - how to reference a CSS client bundle?

2015-01-12 Thread Kushal Jain
Hey J var lib = @com.ruchi.bundle.client.Resource::INSTANCE; var style = lib.@com.ruchi.bundle.client.Resource::button()(); var css = style.@com.ruchi.bundle.client.Button::gwtbutton()(); i tried this but i got class cast exception. hey i want to ask you one thing more while calling we have

DataGrid inside InfoWindow doesn't show table data

2015-01-12 Thread Kevin Workman
I posted this on StackOverflow here , but nobody is biting, so I'm cross-posting here. I'm using GWT along with the GoogleMaps GWT API (v3.8

Re: JSNI - how to reference a CSS client bundle?

2015-01-12 Thread Jens
Your "lib" variable is of type Resource but your gwtbutton() method is defined on MyCssResource. So you first have to call Resource.button() to get a MyCssResource and then call MyCssResource.gwtbutton(). -- J. -- You received this message because you are subscribed to the Google Groups "Goog

Re: JSNI - how to reference a CSS client bundle?

2015-01-12 Thread Kushal Jain
> > Hey Magnus > are you got the solution ? because i am stick at some point in jsni. I try to get the gwtbutton css from Resource interface but it not call public native void jsni() /*-{ var lib = @com.ruchi.bundle.client.Resource::INSTANCE; var style = lib.@com.ruchi.bundle.client.Resou

Re: Javascript is not attaching to the DOM

2015-01-12 Thread Frank Taffelt
sounds like a timing problem. the jquery document ready listener fires before your date element is created and attached to the DOM. You could try to call your datepicker javascriptcode after your UIBinder based widget is created. Try overriding the widgets onLoad Method. On Monday, January 12,

How to add back the “loading” Element after removed it from Parent?

2015-01-12 Thread Tom
Ok, in war/MyProject.html, I have: ... in MyProject.java public class OfflineMatching implements EntryPoint { @Override public void onModuleLoad() { // this code works fine if(DOM.getElementById("loading")!=null){

Re: How to make your GWT app loading fast by using gzip in .htaccess file?

2015-01-12 Thread Thomas Broyer
It all depends where the time is spent. If you have a good Internet connection, you won't see much improvement. Log lightweight metrics (http://www.gwtproject.org/doc/latest/DevGuideLightweightMetrics.html) to have an idea where the time is spent (downloading, evaluating, etc.); you should also

Re: How to make your GWT app loading fast by using gzip in .htaccess file?

2015-01-12 Thread Tom
Thank you very much for your answer. Ok, I got it but I still did not see it quicker after putting compression="on" into connector of conf/server.xml file. Something is wrong here. On Monday, January 12, 2015 at 5:31:50 PM UTC+7, Thomas Broyer wrote: > > .htaccess is an Apache HTTPD configurati

Re: I am developing web app in GWT with MVP Pattern, there is HomeView class which use TabPanel to show another view in one page.

2015-01-12 Thread Subhrajyoti Moitra
http://www.gwtproject.org/articles/mvp-architecture.html Check out the section that says "Binding Presenters and Views". On Mon, Jan 12, 2015 at 3:42 PM, Ajay Sharma wrote: > UsersView usersView=new UsersView(); > > public HomeView() { > > tabPanel=new TabPanel(); > tabPanel.setSize("5

Re: How to make your GWT app loading fast by using gzip in .htaccess file?

2015-01-12 Thread Thomas Broyer
.htaccess is an Apache HTTPD configuration file. Apache Tomcat won't honor it. The expected name is also ".htaccess", not "1.htaccess". On Monday, January 12, 2015 at 5:16:59 AM UTC+1, Tom wrote: > > My GWT app got a problem . That is the Initial downloading file is quite > big. So I want to mak

I am developing web app in GWT with MVP Pattern, there is HomeView class which use TabPanel to show another view in one page.

2015-01-12 Thread Ajay Sharma
UsersView usersView=new UsersView(); public HomeView() { tabPanel=new TabPanel(); tabPanel.setSize("500px", "400px"); initWidget(tabPanel); tabPanel.add(usersView.getUsersView(), "Home"); tabPanel.add(new Button("Add"),"User"); tabPanel.add(usersView.getUsersView(), "Re

Javascript is not attaching to the DOM

2015-01-12 Thread Yogish Nayak
I have got one issue here. I am using bootstrap css and gwt in my application. In my uibinder page, I am using gwt textbox, and applying a style ("date") as shown below. Also bootstrap-datepicker.js and related bootstrap css files have been attached. On loading of a html, I am running the