Wednesday, July 30, 2014

Re: SuperDevMode & external server

Yes but it doesn't seem to have any effect. But if it was required there should be something like

Ignoring non-whitelisted Dev Mode URL: http://some.domain.com/

in the browser's JS console which I have not seen.

--
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+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

Re: Why Cookies will not be stored if setting Timeout = 30 days in GWT?

You're using integer arithmetic for a sum that overflows beyond the maximum positive value for an integer. So 1000*60*60*24*30 is negative.

You could try 1000L*60*60*24*30

Paul

On 31 Jul 2014 01:53, "Tom" <HenryHa5@gmail.com> wrote:

This is very weird. Ok, the below code works fine

public void setCookie(String cookiesName, String cookiesValue){      final int COOKIE_TIMEOUT = 1000 * 60 * 60 * 24;//1 days      Date expires = new Date((new Date()).getTime() + COOKIE_TIMEOUT);      Cookies.setCookie(cookiesName, cookiesValue, expires);  }  //then  setCookie("currentLang","de");  Collection<String> cookies = Cookies.getCookieNames();  for(String cookie : cookies){          if("currentLang".equals(cookie)){                System.out.println("got currentlang");          }  }  

If i run the above code then I can see output: "got currentlang" However, if I set timeout=30 days final int COOKIE_TIMEOUT = 1000 * 60 * 60 * 24 * 30;//30 days, then nothing got printed out, so "currentLang" has not even been stored if we set 30 days?

Why is that? does Gwt prevent that to happen?

http://stackoverflow.com/questions/25049270/why-cookies-will-not-be-stored-if-setting-timeout-30-days-in-gwt

--
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+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

--
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+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

Re: unable to use external javascript in GWT

public folder should be on the same level as gwt.xml file. superdev mode doesn't allow usage of <script> in gwt.xml, you have to include it in your application html file (it will be copied from public folder to target). You still can inject your scripts in onModuleLoad() of your library, but it's quite tricky.

On Wednesday, July 30, 2014 2:20:06 AM UTC-7, Sandeep Poonia wrote:
Thanks Jim and Thomas, $wnd worked for me. But i am facing problem when i changed the location of the go.js , I moved it to the folder where gwt.xml file is present using  <script src="go.js"/> but i am getting the following message. 

14:40:05.077 [ERROR] [opsdashboardlocal] The Cross-Site-Iframe linker does not support <script> tags in the gwt.xml files, but the gwt.xml file (or the gwt.xml files which it includes) contains the following script tags: 
go.js
In order for your application to run correctly, you will need to include these tags in your host page directly. In order to avoid this error, you will need to remove the script tags from the gwt.xml file, or add this property to the gwt.xml file: <set-configuration-property name='xsiframe.failIfScriptTag' value='FALSE'/>

And I am also confused about public folder. Should i create a public folder under my project or under src dir? 

On Monday, July 28, 2014 2:43:47 AM UTC+5:30, Thomas Broyer wrote:


On Sunday, July 27, 2014 10:11:22 AM UTC+2, Sandeep Poonia wrote:
Hi ,
I want to use goJS with GWT. I downloaded GOJS javascript and put it in the sampleproject folder under war where sampleproject.nocache.js and sampleproject.devmode.js is present. In sampleproject.html i added 
<script type="text/javascript" language="javascript" src="sampleproject/go.js"></script>

You shouldn't put the file there. The sampleproject/ folder will be cleared by the GWT Compiler.
Either put your script in your "public path" so it gets copied there by the GWT Compiler [1], or put it outside the sampleproject/ folder.
 

In one of the view i used 
public static native void initGo() /*-{
var $$ = go.GraphObject.make;
}-*/;
when i call this function , exception is thrown:

com.google.gwt.event.shared.UmbrellaException: Exception caught: (ReferenceError) @com.amazon.ops.client.OpsMenuView::initGo()([]): go is not defined.

Can anyone please help me with this?

As Jim already said, you need to use $wnd to escape the sandbox GWT is running in and into the context of the web page, where your script is loaded.

--
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+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

New version 1.4.3 of jqm4gwt is available, check it out.

 
New version 1.4.3 of jqm4gwt is available. It's extended wrapper over jQuery Mobile.
In some sense it's alternative for mgwt, and could be used for Tablet/Mobile development in pure Java.
Demos http://jqm4gwt.appspot.com/  and source code https://github.com/jqm4gwt/jqm4gwt

--
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+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

Why Cookies will not be stored if setting Timeout = 30 days in GWT?

This is very weird. Ok, the below code works fine

public void setCookie(String cookiesName, String cookiesValue){      final int COOKIE_TIMEOUT = 1000 * 60 * 60 * 24;//1 days      Date expires = new Date((new Date()).getTime() + COOKIE_TIMEOUT);      Cookies.setCookie(cookiesName, cookiesValue, expires);  }  //then  setCookie("currentLang","de");  Collection<String> cookies = Cookies.getCookieNames();  for(String cookie : cookies){          if("currentLang".equals(cookie)){                System.out.println("got currentlang");          }  }  

If i run the above code then I can see output: "got currentlang" However, if I set timeout=30 days final int COOKIE_TIMEOUT = 1000 * 60 * 60 * 24 * 30;//30 days, then nothing got printed out, so "currentLang" has not even been stored if we set 30 days?

Why is that? does Gwt prevent that to happen?

http://stackoverflow.com/questions/25049270/why-cookies-will-not-be-stored-if-setting-timeout-30-days-in-gwt

--
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+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

Styling DataGrid headers

I've configured my DataGrid with a custom CSS file like so:

  public interface UsersDataGridResources extends DataGrid.Resources
  {
    @Source({DataGrid.Style.DEFAULT_CSS,"usersDataGrid.css"})
    DataGrid.Style dataGrid();
  }

  private static final int DEFAULT_PAGE_SIZE = 50;
  private static final UsersDataGridResources usersDataGridResources
    = GWT.create(UsersDataGridResources.class);
  static { usersDataGridResources.dataGrid().ensureInjected(); }

  private DataGrid<User> usersGrid_
    = new DataGrid<User>(DEFAULT_PAGE_SIZE,usersDataGridResources);

I've specified a normal font in usersDataGrid.css:

.dataGridHeader {
  font-weight: normal !important;
  text-decoration: none !important;
}

This isn't being reflected in what I see when the grid is rendered.  I'm specifying the column headers as simple strings, not Cells.  Is there a different property I need to configure?

Thanks,

Patrick

--
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+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

U.S. targets Russian energy, arms and finance sectors with new sanctions

     
gwt,
Here's what's trending on Twitter this week.
  gwt
     

Paul Sonne @PaulSonne

EU agrees to broad sanctions on Russia m.wsj.com/articles/eu-ex…

29 Jul

U.S. targets Russian energy, arms and finance sectors with new sanctions

President Barack Obama said Tuesday that the U.S. is intensifying its economic sanctions against Russia, hitting Moscow's energy, arms and banking industries in response to what he said was President Vladimir Putin's continued fueling of violence in eastern Uk...

Чемпионат @championat

Антуан Гризманн подписал долгосрочный контракт с «Атлетико»
championat.com/football/news-… pic.twitter.com/aBU0NiMexp

29 Jul

MFA of Ukraine @MFA_Ukraine

"Putin es un patrocinador de los terroristas" infobae.com/c1583930 за допомогою @infobaeamerica #Ukraine #UnitedForUkraine #MH17

29 Jul

Putin es un patrocinador de los terroristas

El embajador ucraniano en Argentina, Yurii Diudin, señaló a Rusia como un sponsor del terrorismo internacional por proveer armas a los separatistas prorrusos

Kyiv Post @KyivPost

Brian Bonner: #US moving too slowly to counter #Russia's war against #Ukraine
kyivpost.com/opinion/op-ed/… pic.twitter.com/71FcVfgOtU

29 Jul

Christopher Miller @ChristopherJM

Still 151 held in captivity, prez says. TT @poroshenko: Today in #Horlivka we freed 17 hostages. Glory to Ukraine! pic.twitter.com/iNmfuWE4fV

29 Jul

1

Retweet

Ian Bateson @ianbateson

#Ukraine Security council spox sticks to line that all urban shelling that seems to be army is rebel provocation pic.twitter.com/0L0LeXaV9T

29 Jul

1

Retweet

5 канал @5channel

Відео: ІКАО перегляне правила польотів над зонами конфлікту bit.ly/1o0bC2E

29 Jul

1

Retweet

Петро Порошенко @poroshenko

#Poroshenko : Українські війська звільнили Степанівку. Про це мені щойно доповів Міністр оборони. Слава Україні! pic.twitter.com/uo3QqOCpXp

28 Jul

1

Retweet

Don't miss out. Stay up to date on what's happening.
Go to Twitter