Super Dev Mode stopped working in Chrome

2017-01-12 Thread N Troncoso
Super Dev Mode is no longer working for me in Chrome. It used to give me the little shield in the address bar that let me accept mixed content. That got annoying, so I added the "--allow-running-insecure-content" parameter and it didn't make me go through that anymore. Now, in Chrome 55, the

Re: GSS changes aren't recognized in SDM

2016-10-05 Thread N Troncoso
s? > > On Wednesday, October 5, 2016 at 2:12:07 PM UTC+2, N Troncoso wrote: >> >> I'm starting a new project using GWT 2.8-rc2, and am setting up my GSS >> resources. It all works and the pages render correctly, but if I change a >> GSS file, the changes aren't lo

Re: NoClassDefFoundError (HttpSessionIdListener) when launching SDM, after switching from gwt-2.8.0-beta1 to rc2

2016-10-05 Thread N Troncoso
For anyone with the same issue as me, I had to remove the *provided* in the dependency management for javax.servlet On Monday, October 3, 2016 at 9:22:48 AM UTC-4, N Troncoso wrote: > > > I'm having the same issue as Boris, except my dependency tree shows that > I'm using 3.

GSS changes aren't recognized in SDM

2016-10-05 Thread N Troncoso
I'm starting a new project using GWT 2.8-rc2, and am setting up my GSS resources. It all works and the pages render correctly, but if I change a GSS file, the changes aren't loading when I refresh the browser. I have my ResourceBundles in *src/main/java/com/company/project/client/resources*

Re: NoClassDefFoundError (HttpSessionIdListener) when launching SDM, after switching from gwt-2.8.0-beta1 to rc2

2016-10-03 Thread N Troncoso
I'm having the same issue as Boris, except my dependency tree shows that I'm using 3.1: [INFO] +- com.google.gwt:gwt-user:jar:2.8.0-rc2:compile [INFO] | \- javax.servlet:javax.servlet-api:jar:3.1.0:provided (scope managed from compile) [INFO] \- com.google.gwt:gwt-dev:jar:2.8.0-rc2:compile

Ui Binder Alternatives

2016-07-23 Thread N Troncoso
With GWT 3.0, Widgets and UI Binder is losing support. Even besides that, I'm not a huge fan of UI Binder. I'd really just prefer to use vanilla HTML. With that said, I've been searching for other options and I've only found that alternatives are very limited. Even more so, examples of how to

Re: Maven Plugin for GWT - Access Dev Mode Remotely

2016-07-08 Thread N Troncoso
July 8, 2016 at 1:13:19 PM UTC-4, Thomas Broyer wrote: > > > > On Friday, July 8, 2016 at 6:32:26 PM UTC+2, N Troncoso wrote: >> >> I need to be able to hit my dev mode machine remotely. I'm using the >> Maven Plugin for GWT (tbroyer version). The standard commands don'

Maven Plugin for GWT - Access Dev Mode Remotely

2016-07-08 Thread N Troncoso
I need to be able to hit my dev mode machine remotely. I'm using the Maven Plugin for GWT (tbroyer version). The standard commands don't let you hit the remote machine at all. If I add -Dgwt.bindAddress=0.0.0.0 to the code server command: call mvn gwt:codeserver -pl client -am

Re: GWT, Firefox, and focusout

2016-04-26 Thread N Troncoso
issue really, so let me GTFY: > > https://gist.github.com/nuxodin/9250e56a3ce6c0446efa > > On Thursday, April 21, 2016 at 1:16:00 PM UTC-7, N Troncoso wrote: >> >> I have an issue where an event isn't firing in Firefox, and it turns out >> this is because Firefox d

GWT, Firefox, and focusout

2016-04-21 Thread N Troncoso
I have an issue where an event isn't firing in Firefox, and it turns out this is because Firefox doesn't currently support the focusin and focusout events. This is a problem in a custom cell where I'm overriding onBrowserEvent. On the blur event, the ValueUpdater parameter is null, but it's

Re: Unable to install GWT Developer Plugin (ver 1.0.11357) on Chrome 48

2016-01-29 Thread N Troncoso
The plugin is no longer supported. You'll need to use super dev mode. What version of GWT are you using? 2.7 runs SDM by default. On Friday, January 29, 2016 at 9:11:52 AM UTC-5, Sambodhan Dhammapathee wrote: > > Hi All, > > I am new to web technology and preferred GWT. > I have install as

Cell Table keyboard navigation doesn't work in Firefox

2016-01-28 Thread N Troncoso
The CellTable has a keyboard mode to allow moving around with arrow keys. In Chrome, when moving to an input cell, the cell content is selected (hightlighted), but you can still moving to other cells until you start typeing. In Firefox, the cell content does not highlight. You have to press

Re: Are there any currently developed GWT Widget Libraries?

2016-01-20 Thread N Troncoso
I started using GWT Polymer for my Web App a few weeks ago. I had to get over some difficult hurdles, but I think it's really paying off. The UI is sleek and responsive and just overall works very well. It's more or less the same as GWT Material from what I can tell (they are both designed

GWT Plugin for Maven with Polymer (jsinterop)

2016-01-13 Thread N Troncoso
Switching to the Maven Plugin for GWT , I'm unable to get GWT to recognize the jsinterop flag. I'm assuming not many people using this plugin are using jsinterop, because I can only find a single source about it:

Re: GWT Plugin for Maven with Polymer (jsinterop)

2016-01-13 Thread N Troncoso
and everything was good. Granted, maybe the -XjsInteropMode flag was removed in beta, which would explain the issue. I didn't think it'd be removed until release. On Wednesday, January 13, 2016 at 8:47:18 AM UTC-5, Thomas Broyer wrote: > > > > On Wednesday, January 13, 2016 at 1:34:51

getSession().getServletContext().getRealPath returns wrong path

2016-01-11 Thread N Troncoso
I restructured a project to use tbroyer's gwt maven plugin and split the code into client/shared/server modules. Since then, getSEssion().getServletContext().getRealPath("/") is returning Project\server\src\main\webapp\, when it should be returning the target directory. Is there something in

Re: How to Load html files through iframe

2016-01-11 Thread N Troncoso
Frame iframe = new Frame(); iframe.setUrl("path/to/file"); On Monday, December 28, 2015 at 10:23:01 AM UTC-5, Chandan Kumar Rout wrote: > > Hi all. > I want to load a html file which is in location file:///C:/test.html. > How i can load it in my GWT application. Is it possible or not. > --

Re: getSession().getServletContext().getRealPath returns wrong path

2016-01-11 Thread N Troncoso
I am. The problem I'm getting is that I'm trying to get the path to a file, but getRealPath() returns null because the path doesn't exist, since I'm trying to find something in /resources (target) vs. webapp/resources (src) On Monday, January 11, 2016 at 12:18:40 PM UTC-5, N Troncoso wrote

Re: Layout principles for UIBinder with Polymer elements

2016-01-06 Thread N Troncoso
What is your DockLayoutPanel in? You should be putting it in a RootLayoutPanel, or some other LayoutPanel. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: GWT maven plugin can't find shared sources (take 2)

2016-01-05 Thread N Troncoso
Well... upon using the debug flag, I found that I needed to add gwt-lib to the dependency.. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

GWT Maven plugin can't find shared source

2016-01-05 Thread N Troncoso
I migrated a maven-gwt-plugin project to "Maven Plugin for GWT" (https://tbroyer.github.io/gwt-maven-plugin/). To do this, I generated a new project with the archetype provided. Upon simply running that application, it worked fine. Then I copied client files to the client, server to server,

Re: Layout principles for UIBinder with Polymer elements

2016-01-05 Thread N Troncoso
The DockLayoutPanel is designed to take up the whole screen. You only have to define the size of the north/south/east/west panels (or don't give them a size for them to not appear). The center takes up the rest of the available space. As for Polymer, look at the catalog for the elements you

Re: Using MVP with GWT2.7

2016-01-05 Thread N Troncoso
You could technically do that, but you'd need some way to differentiate between events; Maybe with an enum: public class MyEvent extends GwtEvent { public static enum EventTypes { THIS_EVENT, THAT_EVENT; }; public interface Handler extends EventHandler {

Re: GWT maven plugin can't find shared sources (take 2)

2016-01-05 Thread N Troncoso
After looking more carefully, I'm only getting this for 1 class: [ERROR] Line 65: No source code is available for type com. path.to.shared.i18n.PhxMessages; did you forget to inherit a required module ? I get that a whole bunch of times (cause it's referenced many times). Then after that, I

GWT maven plugin can't find shared sources (take 2)

2016-01-05 Thread N Troncoso
Sorry. I really needed to edit this post, but it doesn't seem that I can. So I had to delete it and remake it. Anyway... I migrated a maven-gwt-plugin project to "Maven Plugin for GWT" ( https://tbroyer.github.io/gwt-maven-plugin/). To do this, I generated a new project with the archetype

Re: GWT Maven plugin can't find shared source

2016-01-05 Thread N Troncoso
I can't edit my post, but my module.gwt.xml should be: -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: Activities and Places - Enabling History to reflect an updated data item

2016-01-05 Thread N Troncoso
Juan is correct. If you populate the list in the start() method of the activity, that will be called everytime the place corresponding to that activity is loaded, so you can refresh it then. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To

Re: GSS eval not evaluating

2015-12-24 Thread N Troncoso
While I'd still like to know why this isn't working, I worked around the issue by creating constants: public interface ColorResources extends CssResource { public static String shadowZ0 = Util.getShadow(0); public static String shadowZ1 = Util.getShadow(1); public static String

GSS eval not evaluating

2015-12-24 Thread N Troncoso
I have a method that calculates a box shadow. To use it, I call getShadow(int depth). If I call this, I get the expected result. Now, I'd like to create a few predefined constants in GSS. So, I do this: public interface ColorResources extends CssResource { String shadowZ0(); String

Re: Getting rid of Dev mode for future GWT releases

2015-12-24 Thread N Troncoso
Can you like explain a little more about your setup? In our production environment, our app is hosted by Tomcat, but by default GWT uses Jetty. There are some discrepancies there, and any Tomcat specific issues are super hard to debug. We've been trying to move to SDM with Tomcat, but we

Re: How to register custom function with GSS

2015-12-22 Thread N Troncoso
I've been looking for an answer to this as well. There is no documentation at all for custom functions. I found a slide show with a single slide that said to implement GssFunctionMapProvider and said nothing of what to actually do in this class or what to do with it On Tuesday, December

Re: How to register custom function with GSS

2015-12-22 Thread N Troncoso
That's a shame. Though, I may be able to do what I need with a mixin, but the conditionals don't seem to support '='?? Is this valid? : @defmixin shadow(SHOW) { @if (SHOW = 1) { box-shadow: 0 1px 1px rgba(0, 0, 0, .24), 0px 1px 1.5px rgba(0, 0, 0, .12); } @else if (SHOW

Re: Understanding the Layout System

2015-12-21 Thread N Troncoso
I have content that goes under the TabPanel. (a StackLayoutPanel actually), so a scroll bar inside does not solve an issue like that. My question isn't necessarily aimed to solve that particular problem, but to understand the way the LayoutPanels are suppose to be used to create an app. The

Re: Understanding the Layout System

2015-12-21 Thread N Troncoso
I have content that goes under the TabPanel. (a StackLayoutPanel actually), so a scroll bar inside does not solve an issue like that. My question isn't necessarily aimed to solve that particular problem, but to understand the way the LayoutPanels are suppose to be used to create an app. The

Understanding the Layout System

2015-12-21 Thread N Troncoso
I've been reading a lot about the LayoutPanels introduced in 2.0 and trying to understand their purpose. I keep seeing that I should be using these instead of the older panels, but they seem way more complicated and limiting. Take my app, for example. It's got a straight forward interface: A