| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Wednesday, July 2, 2014
Several hundred soldiers, activists rally in Kyiv against ceasefire
Re: JSNI function and DevMode
I was trying to "anonymize" what was actually being done when pasting in here and somehow ended up with an extra single quote. I've verified that the application is correct and just using 'PAGE'.
-- As for the export function not being static...probably just an oversight. I wouldn't think it matters either, but I'll make the change and see if that makes any difference.
On Wednesday, July 2, 2014 11:59:47 AM UTC-4, Patrick Tucker wrote:
On Wednesday, July 2, 2014 11:59:47 AM UTC-4, Patrick Tucker wrote:
You have 2 single quotes after PAGE??Also, not that it should matter here, but why isn't your export function static?
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.
JSNI function and DevMode
You have 2 single quotes after PAGE??
Also, not that it should matter here, but why isn't your export function static?
--
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.
Also, not that it should matter here, but why isn't your export function static?
--
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: GWT Developer Plugin
use an old version
2014-07-02 17:18 GMT+02:00 Francesco Viscomi <fviscomi@gmail.com>:
Hi all--i need to use GWT Developer Plugin and I have windows 8 at 64bit
either chrome and firefox i'm not able to use the plugin;when i try to download it i get:(firefox)(chrome)start to download but a pop up inform me that the installation has been disabled because it is necessary plugin NPAPI;how i can resolve this issue? thanks a lotFrancesco
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.
GWT Developer Plugin
Hi all
-- i need to use GWT Developer Plugin and I have windows 8 at 64bit
either chrome and firefox i'm not able to use the plugin;
when i try to download it i get:
(firefox)
(chrome)
start to download but a pop up inform me that the installation has been disabled because it is necessary plugin NPAPI;
how i can resolve this issue? thanks a lot
Francesco
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: JSNI function and DevMode
Try the following code:
$wnd.launchMenuEvent = $entry(function() {
@our.package.ui.NavigationContainer::handleMenuEvent(Ljava/lang/String;)
});
On Tuesday, July 1, 2014 11:08:39 PM UTC+4, gktcs wrote:
On Tuesday, July 1, 2014 11:08:39 PM UTC+4, gktcs wrote:
We have a simple GWT (2.5.1) and GXT (3.0.6) application which has a menu built from anchors. The anchors are defined like:<a href="javascript:launchMenuEvent('PAGE'');" class="menuClass">Where the launchMenuEvent function is defined as:private final native void exportMenuClickMethod() /*-{
$wnd.launchMenuEvent = $entry(@our.package.ui.NavigationContainer:: ;handleMenuEvent(Ljava/lang/ String;));
}-*/When we run the compiled application in any of the supported browsers, this functionality works as designed; a user can select a menu item and fire-off the corresponding event. However, when we run this in DevMode, we simply get "null" returned and the code behind NavigationContainer.handleMenuEvent is never called. It seems like the launchMenuEvent is never being defined in the browser when running in DevMode, even though we can step through the code and see that exportMenuClickMethod is called. I feel like I've overlooked something simple, but can't figure out why this isn't working in DevMode. Any help would be greatly appreciated.Thanks!
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.
Tuesday, July 1, 2014
JSNI function and DevMode
We have a simple GWT (2.5.1) and GXT (3.0.6) application which has a menu built from anchors. The anchors are defined like:
-- <a href="javascript:launchMenuEvent('PAGE'');" class="menuClass">Where the launchMenuEvent function is defined as:
private final native void exportMenuClickMethod() /*-{
$wnd.launchMenuEvent = $entry(@our.package.ui.NavigationContainer::handleMenuEvent(Ljava/lang/String;));
}-*/;When we run the compiled application in any of the supported browsers, this functionality works as designed; a user can select a menu item and fire-off the corresponding event. However, when we run this in DevMode, we simply get "null" returned and the code behind NavigationContainer.handleMenuEvent is never called. It seems like the launchMenuEvent is never being defined in the browser when running in DevMode, even though we can step through the code and see that exportMenuClickMethod is called.
I feel like I've overlooked something simple, but can't figure out why this isn't working in DevMode. Any help would be greatly appreciated.
Thanks!
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.
Subscribe to:
Posts (Atom)










