Re: Jakarta EE 9 support in GWT

2023-04-12 Thread mike newton
>> https://github.com/gwtproject/gwt/issues/9727. >> >> Are there any intentions to support Jakarta in an upcoming GWT release? >> >> Thanks, >> Mike. >> > -- You received this message because you are subscribed to the Google Groups "GWT Users&

Jakarta EE 9 support in GWT

2023-04-03 Thread mike newton
/gwt/issues/9727. Are there any intentions to support Jakarta in an upcoming GWT release? Thanks, Mike. -- 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: hwo to get the server working?

2018-08-26 Thread Mike O.
h as excerpts of my pom.xml showing how the > project is configured. > > On Saturday, August 25, 2018 at 12:19:10 PM UTC-3, Mike O. wrote: >> >> Hello, >> >> I am new to GWT (but not to Java) and have no experience with servers. I >> have downloaded GWT and

Re: hwo to get the server working?

2018-08-25 Thread Mike O.
Thomas, Thanks so much - it worked great. One more (related) question, if I may. How do I best update the server-side code? Right clicking on the text editor in the IDE and selecting "Validate" works (as does exiting the IDE and re-running). Is that the best / only way? Thanks again,

Re: Drag and Drop in GWT

2017-01-24 Thread Mike Warne
Most GWT components support drag and drop event handling. For example: Labels, Grids, etc. Not sure if this helps when drawing to a canvas... HTML h = new HTML("Hello"); HandlerRegistration regHandler = h.addDragStartHandler(); Mike On Monday, January 23, 2017 at 6:54:29 AM U

Re: gxt combobox not scroll vertical

2016-12-23 Thread Mike Warne
Have you asked this on the gxt forums? Sorry not familiar with gxt Mike -- 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 google-web-toolki

Re: Troubleshooting compilation issues?

2016-10-01 Thread Mike Warne
Do you have any JavaScript exceptions in your browser console? Sometimes an exception will cause important code to be skipped, causing your app to be unresponsive. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this

Re: MaterialSearch - issues

2016-05-11 Thread Mike Warne
*** Did I post the issues in the wrong forum? *** Yes, this is probably the wrong forum. GWT-MaterialDesign is not part of GWT. https://gitter.im/GwtMaterialDesign/gwt-material MIke. -- You received this message because you are subscribed to the Google Groups "GWT Users&q

Re: MaterialModal in gwt-material-1.5.0.jar

2016-05-11 Thread Mike Warne
You should probably try posting the the GWT-MaterialDesign Gitter forum: The developers, and other users should be able to respond to your issue. https://gitter.im/GwtMaterialDesign/gwt-material Mike. -- You received this message because you are subscribed to the Google Groups "GWT

Re: nocache file timestamp is not changing after compiles

2016-04-07 Thread Mike Warne
Thanks! Mike -- 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 google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send email to

nocache file timestamp is not changing after compiles

2016-04-06 Thread Mike Warne
. Is this fix included in this version of GWT? Sorry if this is the wrong forum for this, but I though someone here might have faced this issue also.. Thanks, Mike. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from

Creating RemoteServiceServlet Programmatically

2015-12-20 Thread Mike Morgan
ething I need to call on a RemoteServiceServlet object to have it do all the behind-the-scenes stuff? Is there a difference between creating a RemoteSeviceServlet via the web.xml and just calling "new RemoteServiceServlet()" ? thanks, Mike -- You received this message because you are s

Static vs dynamic String internationalization

2015-02-23 Thread Mike
internationalization? Are there other factors to consider besides those on http://www.gwtproject.org/doc/latest/DevGuideI18n.html ? Can I still use UiBinder with dynamic internationalization? Thank you for all replies in advance. Best regards, Mike -- You received this message because you

Re: Chrome GWT Plugin required but is already installed

2014-11-29 Thread Mike Dougherty
Hello Alex, Just wanted to say that you are not the only one. My Chrome upgraded itself this morning and now the Dev Mode stopped working. I'm working through this issue as well. Kind regards, Mike On Friday, November 28, 2014 10:26:08 PM UTC+1, Alex wrote: This just suddenly started

Re: Issue with Loading image while using 'CellTable' in GWT

2013-11-29 Thread Mike Dee
We do that without much problem. How do you load the image and determine when it is finished loading? We use gwt-image-loader ( https://code.google.com/p/gwt-image-loader/). It has an event that is thrown when the image is loaded. Mike On Thursday, November 28, 2013 10:35:36 PM UTC-8, Arnab

Re: Can't debug on MacOS X

2013-11-29 Thread Mike Dee
I resolved this by installing a newer version (Kepler) of Eclipse. On Tuesday, November 26, 2013 4:39:13 PM UTC-8, Mike Dee wrote: Trying to test our app on a Mac and can't debug the app. Upon launching the app in debug mode a Problem Occured dialog pops with with a message, Launching

Re: What is the simplest way to show “loading indicator” during an RPC call in GWTP?

2013-11-29 Thread Mike Dee
We do exactly what you describe and it works fine. However, we don't use GWTP. Our code looks very similar to yours. The presenter (activity) initiates the query and invokes the dialog and hides it when the callback returns. Maybe GWTP is doing something in the interim. Mike On Saturday

Re: Thoughts on GWT 3.0 re: Java 8 and IE 8/9

2013-11-29 Thread Mike Dee
This sounds very much like Wicket. When we were evaluating frameworks to use, about 2.5 years ago, to update our app it boiled down to Wicket and GWT. Wicket had the advantage that it allowed designers and coders to work better together (markup and code in separate source files). GWT won out

Re: Dynamically generated HTML and GWT

2013-06-04 Thread Mike Dee
This looks more difficult than I first thought. I think I'd have to somehow also attach to the form element. I would need to set the action to go to a servlet. I don't see a way to take some HTML and get the FORM element. I may try a completely different way to do this. I'll create a

Re: Dynamically generated HTML and GWT

2013-06-03 Thread Mike Dee
Is my case considered static HTML? The HTML is not known at run time. It is received once the app is up and running. It is not altered at all. The intent is to display it. The HTML is generally always contains a form and there is an option to allow the user to alter some of the form fields

Re: Dynamically generated HTML and GWT

2013-06-03 Thread Mike Dee
. Mike -- 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+unsubscr...@googlegroups.com. To post to this group, send email to google-web

Re: Dynamically generated HTML and GWT

2013-06-03 Thread Mike Dee
well. The reports are static and we can show them within the GWT app easily. There is no user feedback. However, on the form pages, the user can interact with the form (changing form fields and saving the form). So, it is a little trickier than the static reports we display. Mike -- You

Re: Dynamically generated HTML and GWT

2013-05-31 Thread Mike Dee
Now, this has gone from fun to just downright frustrating. I'm stuck at the point of finding and wrapping the submit button. I get the ubiquitous, A widget that has an existing parent widget may not be added to the detach list. Looked through the dozens of posts regarding that message. The

Re: Dynamically generated HTML and GWT

2013-05-30 Thread Mike Dee
Thanks for pointing me in the right direction. One last question. How is the form submission handled? Is a servlet needed? In this case, the form will simply save any changes (to a db) and redisplay itself. Thanks, Mike -- You received this message because you are subscribed to the Google

Dynamically generated HTML and GWT

2013-05-29 Thread Mike Dee
is wrapped in a DIV). Just want to know what is correct. 2) The second case is a little more tricky. It is similar to the first, but the HTML is a form. So, it needs to display (which it does). But how do I handle the submit button? Thanks, Mike -- You received this message because you

What is the reason for Oops! Google Chrome cannot connect to server 127.0.0.1:8888?

2013-05-26 Thread Mike John
restarted Chrome, Eclipse and my computer; and after a while of trying and trying, things worked again the desired way. *My question:* Does anybody know what has happened? I would like to avoid such a situation in the future. Thank you, :) Mike ( GWT ) -- You received this message because you

primer for mobile development

2013-05-22 Thread mike b
The company I work for just got a secure mobile app that has browser integration for the specific platform (iOS,android). We have an existing GWT app (several actually) that could have some convenient mobile features. Can someone provide direction on resources (articles, books, blogs, forum

Re: primer for mobile development

2013-05-22 Thread mike b
Ed , thx for the reply. Can you point me to a device emulator? -- 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

Re: primer for mobile development

2013-05-22 Thread mike b
Nino , thx for the links. I will look into those. -- 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+unsubscr...@googlegroups.com. To post

IE9 problem with GWT

2013-05-21 Thread Mike
GWT Release: 2.5.0 Browser: IE9 Our clients have a problem using our web application because, on IE9, when the application shows a message (i.e., to confirm if a file is uploaded or not), the focus remains behind the message shown and it is impossible to interact with the message, so you

Re: GWT compilation failed

2013-05-08 Thread Mike
I had this same issue, and deleting the gwt-unitCache worked for me. Thanks On Tuesday, April 30, 2013 2:29:52 AM UTC-4, Magnus wrote: Hi, solved. I tried around several things. I think deleting the files in the gwt-unitCache folder solved it. Thanks Magnus -- You received this

Re: WindowBuilder (GWTDesigner) error

2013-05-04 Thread Mike Dee
init() simply sets up the controls in the view. If settings is null, it doesn't do much accept leave the controls at their defaults. If settings is not null, then it sets the controls to values specified in settings. Basically its setting the index on a bunch of listboxes. MyControlPanel

WindowBuilder (GWTDesigner) error

2013-05-02 Thread Mike Dee
I'm getting the following error when I try to switch to design mode. GWT Designer can't load a module because of error in gwt.xml module description, incorrect resource which requires processing with GWT generator or by some other configuration error. Please check your

Re: Conceptual Doubt

2013-04-15 Thread Mike Dee
Take a look at Activities and Place and MVP. There is a lot out there on these topics. I think it is what you are looking for. Mike On Sunday, April 14, 2013 2:04:17 PM UTC-7, Robson Braga wrote: Hi folks! I'm new in GWT and I'm writing a GWT Application from scratch. After studied

Re: How to globally catch all exceptions?

2013-04-15 Thread Mike Dee
I recently implemented this and found this article particularly useful: http://www.summa-tech.com/blog/2012/06/11/7-tips-for-exception-handling-in-gwt/ On Wednesday, April 10, 2013 4:22:03 AM UTC-7, membersound wrote: Hi, how could one best catch all exceptions within the application that

Re: GWT WebApp and iOS 6 Safari

2013-03-15 Thread Mike Brock
We have found that using -XdisableClassCastChecking in GWT 2.5 appears to fix the problem on iOS 6 Safari. On Tuesday, March 12, 2013 5:35:46 AM UTC-4, Jens wrote: This is a bit old, but in the interest of linking information here's a blog post I found on this issue with another workaround:

Re: Why doesn't this (AbsolutePanel inside a ScrollPanel) work?

2013-03-04 Thread Mike Dee
That got me thinking. I can't really get rid of tbe ScrollPanel because a number of other panels other substituted into it. But adjusting the overflow on the ScrollPanel seems to work. So onResize() looks like this: Style.Overflow cssover = Style.Overflow.HIDDEN; if( w

Why doesn't this (AbsolutePanel inside a ScrollPanel) work?

2013-03-01 Thread Mike Dee
I've been banging my head on this for a while and have the bruises to show. The goal is to place an AbsolutePanel inside a ScrollPanel.Scrollbars seem to randomly appear in Chrome. Other browsers do weird things too. I simply want to put stuff in an AbsolutePanel and have scrollbars appear

Designing to fill the page

2013-02-18 Thread Mike Dee
I'm trying to develop an app with a screen (using AP) so that it fills the browser window. The app basically displays a bunch of images in tiles. Images are roughly the same size, 300 by 400 pixels. As the user resizes the window, the app calculates how many full images can be displayed

Re: Eclipse Plugin and SSL/TLS with the internal server

2013-01-11 Thread Mike
-in server, then indeed they are encrypted. I also validated by running against a tomcat v6 server with SSL enabled. Again, your assistance is very much appreciated. Mike On Thursday, January 10, 2013 3:00:45 PM UTC-8, kim young ill wrote: are u sure the wireshark catch the right channel/device

Re: Eclipse Plugin and SSL/TLS with the internal server

2013-01-10 Thread Mike
you look at the packets? On Thursday, January 10, 2013 3:31:20 AM UTC+1, Mike wrote: Hi, I enabled SSL on the internal server by using -server :ssl. I am able to connect to the server via https in dev mode. I allowed the browser to accept the certificate sent. I was expecting to see

Re: Gwt Scheduler / TimeLine / Gantt charts

2013-01-10 Thread Mike Davison
We are using this in our app. It has some strengths, but printing is not one of them. Pagination is awkward and there is no ability to export to PDF so we could use that print utility to manage pagination. On Friday, January 6, 2012 5:31:51 AM UTC-8, Steve Moyer wrote: The documentation

Eclipse Plugin and SSL/TLS with the internal server

2013-01-09 Thread Mike
Hi, I enabled SSL on the internal server by using -server :ssl. I am able to connect to the server via https in dev mode. I allowed the browser to accept the certificate sent. I was expecting to see encrypted packets, but everything is in the clear. Am I misunderstanding how the internal

Re: adding scroll panel to popup panel

2013-01-08 Thread Mike Dee
It's fairly simple. Do as expected. Put a ScrollPanel inside a popup. Set the width and height of the ScrollPanel to that of the Popup width and height. Put something (another panel) in the ScrollPanel and set its width and height independently. Here is an example with an HTMLPanel

Re: Vertical align elements in FlowPanel?

2012-12-28 Thread Mike Dee
You may be able to do it with CSS, but FlowPanels are not meant for controlling layout as you desire (centering). Can you try one of the other Panels, like VerticalPanel or LayoutPanel? On Friday, December 28, 2012 1:40:01 AM UTC-8, membersound wrote: Hi, how can I vertically center

Re: how to create columns with common header in data grid.

2012-12-28 Thread Mike Dee
I wanted something similar but did it differently. I created a CellTable with just a header row above another CellTable. The top CellTable had an extra header and nothing else. On Thursday, December 27, 2012 3:14:27 AM UTC-8, shray rawat wrote:

Re: How to know the css used by the datagrid header?

2012-12-28 Thread Mike Dee
The style name is probably obfuscated. The default styles for CellTable are not in the standard.css with other GWT styles. You can find them in com.google.gwt.user.cellview.client.CellTable.css. If you want to change them, make a copy, change the styles, and pass it to your CellTable

Re: Wishlist - What GWT developers want for Christmas

2012-12-15 Thread Mike Dee
One thing that I didn't see and I would have as number #1 on the list is better documentation and improved ease of use, particularly for those starting with GWT. Much of the documentation is written for those already with an understanding of GWT or lack of consideration that a user may be a

Multiple GWT sessions possible?

2012-12-10 Thread Mike Dee
After moving an app from a traditional web app (think PHP or similar scripting language) to a GWT app I noticed a difference in handling of sessions. It seems like it is possible to have multiple simultaneous sessions with a GWT app running in the same browser (different tabs or windows).

Re: Roadmap GWT?

2012-11-09 Thread Mike Brock
For the record, I am still touring the world. =) I'm speaking at the Silicon Valley JUG (http://www.meetup.com/sv-jug/events/87379262/), the Vancouver JUG two days later (http://www.vanjug.com/events/90557972/?eventId=90557972action=detail), Beijing 5 days later, Seoul 3 days after that, and

Is there anything different about internationalizing a Dialog?

2012-11-07 Thread Mike Dee
I just did my first dialog box in GWT - with uibinder. Strangely the code I use for internationalizing didn't work (completely). It looks like the dialog box is trying to be rendered in iso-8859-1 because some French chars are not recognized. Here is the code that appears at the top of a

Scrolling on iPad

2012-11-02 Thread Mike Dee
I have an app with a DataGrid on it and a vertical Scrollbar. Works as expected - when more data is available then fits within grid, vertical scrollbar allows user to scroll down. On iPad, however, the scrollbar is not visible. Strangely, scrolling still works. It's just that the scrollbar

Re: RPC call from server to client

2012-10-26 Thread Mike Dee
I wonder how this is done in Google Docs? The approach may be a bit of overkill for a chat client though. Multiple users can edit a word processing document or spreadsheet simultaneously. I've seen talks about how this is done conceptually. It involved the command pattern and there was a way

Re: Possible RFE: Make UiBinder aware of IsWidget interfaces

2012-10-08 Thread Mike
Thomas, The issue described by Jens doesn't seem to inherently involve MVP -- I don't quite follow the first part of your response. It seems like any widget, no matter how dumb, could implement IsWidget directly rather than extend Composite or a more concrete Widget supertype. Do you think

Places with DataGrid, AsyncDataProvider, and SimplePager

2012-10-02 Thread Mike Dee
I am using Activities and Places and encountered a situation where I'd like to know the best practice or at least get some good ideas. The app has an Activity with a simple search form and a DataGrid. The form has some text boxes (first name, lastname, etc) and a Find button. Enter in a

Re: GWT file download IFrames IE8

2012-09-25 Thread Mike Azzi
Hi Thomas, I am running into the same problem and I didn't quite understand your suggestion. Was it meant to prevent showing iE8 security warning yellow bar, or the reloading of the page? Would you mind elaborating a bit more. Thanks, Mike On Friday, January 13, 2012 9:20:30 AM UTC-5, Thomas

Re: SWFObject wrappers

2012-08-16 Thread mike gieson
On Saturday, February 6, 2010 6:54:44 PM UTC-5, charlie wrote: Anyone have a GWT wrapper for SWFObject  http://code.google.com/p/swfobject/ ? Here's a relatively simple SWFobject wrapper: http://www.gieson.com/Library/projects/utilities/easyswf/ -- You received this message because you are

Re: GWT components/panels on an externally hosted web page

2012-07-23 Thread Mike Dee
Brilliant! That did it. Thank you. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/E2VWDvf3k6QJ. To post to this group, send email to

Re: Download file from server to client - w Servlet etc PLEASE?

2012-07-09 Thread MIKE
Hi, I got the following error. Any help please ? HTTP ERROR: 405 HTTP method GET is not supported by this URL RequestURI=/name/Download *Powered by Jetty:// http://jetty.mortbay.org/* -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group.

Re: Why is getOffsetWidth/getOffsetHeight returning 0 even after onLoad is called for LayoutPanel children?

2012-07-04 Thread MIKE
after updating chrome and FF to latest version, I am having the same problem. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/NcZg1o2nM3MJ. To

Re: Any summary on The History and Future of Google Web Toolkit available?

2012-06-29 Thread Mike Dee
There seems to be some news. Try this: https://twitter.com/#!/search/GWT?q=GWT -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/cvTVNQiDvm8J. To

Re: Disabling selection in CellTable/DataGrid

2012-06-21 Thread Mike Dee
I ended up going with simply changing the CSS. I tried this early without success, but I found out what was going wrong. The DataGrid CSS can be overridden (as described in many postings here). In short, custom CSS can be provided to the DataGrid (and CellTable) via the constructor like this.

Disabling selection in CellTable/DataGrid

2012-06-20 Thread Mike Dee
At first I thought this would be easy to do. But now I'm not sure about what I even want to do. Maybe I should explain. I simply want to have a DataGrid and: 1) not have the rows change color when the mouse hovers over them 2) not have the cell selected when I click on one. At first I

Re: Designing for testability with MVP and Activities and Places

2012-06-14 Thread Mike Dee
the code cleaner, separating business logic from display. Is that enough? On Thursday, June 14, 2012 2:37:05 AM UTC-7, Thomas Broyer wrote: On Thursday, June 14, 2012 6:19:23 AM UTC+2, Mike Dee wrote: Have a look at http://www.google.com/events/io/2010/sessions/gwt-continuous-build

Re: Designing for testability with MVP and Activities and Places

2012-06-13 Thread Mike Dee
to add a method to simulate the pressing of the Find button). On Wednesday, June 13, 2012 3:30:26 AM UTC-7, Thomas Broyer wrote: On Wednesday, June 13, 2012 2:59:33 AM UTC+2, Mike Dee wrote: A couple of questions regarding a test I'd like to perform. Let's assume that testing occurs

Re: Designing for testability with MVP and Activities and Places

2012-06-13 Thread Mike Dee
Have a look at http://www.google.com/events/io/2010/sessions/gwt-continuous-build-testing.html The Wave guys came up with a model where the presenter controls the view, so there's no getter; the view calls the presenter back with the values when needed (i.e. your find() method would have

Using GWTTestCase to test GWT-RPC

2012-06-12 Thread Mike Dee
Just getting started with GWTTestCase. I'd like to create some tests that include testing of the backend. Having trouble getting a basic GWTTestCase running. Here is what it looks like: public class Test2 extends GWTTestCase { @Override public String getModuleName() { return

GWTTestCase and GWT-RPC

2012-06-12 Thread Mike Dee
I'm having trouble getting a basic GWTTestCase running with a simple GWT-RPC. Here is what it looks like. What am I doing wrong. Note that when the test is run the callbacks onFailure() is called with a 404 error detail. public class Test2 extends GWTTestCase { @Override public String

Help with GWTTestCase and GWT-RPC

2012-06-12 Thread Mike Dee
I'm having trouble getting a basic GWTTestCase running with a simple GWT-RPC. Here is what it looks like. What am I doing wrong. Note that when the test is run the callback's onFailure() is called with a 404 error detail. public class Test2 extends GWTTestCase { @Override public String

Re: Help with GWTTestCase and GWT-RPC

2012-06-12 Thread Mike Dee
Figured it out. Needed to add this to the module.gwt.xml file on order for the service servlet to run. !-- Specify the path to any remote services. -- servlet path=/myService class=com.test.app.MyService / Found this out here:

Designing for testability with MVP and Activities and Places

2012-06-12 Thread Mike Dee
Here is a simple example that I'm working on. Input would be appreciated. I'm sure there are different approaches, but I'm having trouble finding one and having a particular issue with the level of granularity of testing. I know one answer, in advance, will be to not use GWTTestCase. I will

Re: making Anchor look like a normal link

2012-06-04 Thread Mike Dee
which it was started. One idea is to pass the user on the URL, but would that be secure? Is there a standard way to do this? On Sunday, June 3, 2012 6:30:39 PM UTC-7, Thomas Broyer wrote: On Monday, June 4, 2012 12:06:42 AM UTC+2, Mike Dee wrote: And opening a new window is when authentication

Re: making Anchor look like a normal link

2012-06-04 Thread Mike Dee
Actually, I think the answer is here: http://code.google.com/p/google-web-toolkit-incubator/wiki/LoginSecurityFAQ On Monday, June 4, 2012 10:40:53 AM UTC-7, Mike Dee wrote: Just thinking. When right-clicking a Hyperlink, which starts a new instance of the app in a separate window/tab, how

Re: making Anchor look like a normal link

2012-06-03 Thread Mike Dee
And opening a new window is when authentication comes into play. The user hasn't logged into the new instance of the application (opened in the new window). Hence we are back to the original problem. With a regular web app, this wouldn't be a problem. The state of whether the user is logged

Re: making Anchor look like a normal link

2012-06-03 Thread Mike Dee
I think I understand what you are saying. In this case, the app is a medical app and there are requirements that the app timeout after a period of inactivity (which is usually short: 15 to 30 minutes). When logging in, an event is triggered and the app state is logged in. Currently, the

Re: making Anchor look like a normal link

2012-05-30 Thread Mike Dee
Actually, I made a mistake. The problem doesn't seem to be the authentication (which simply checks the session). I disabled the authentication and it still happens. I believe this is the way GWT is supposed to work. A GWT is one page. The going back and forward through pages is simulated

Re: making Anchor look like a normal link

2012-05-28 Thread Mike Dee
talk about this authentication issue. Is there a recommended way to handle this using Hyperlink/Anchor? Or, should a Label (ClickableText, maybe) be used in such a situation? Or something else? Mike On Thursday, May 17, 2012 7:26:25 AM UTC-7, Thomas Broyer wrote: On Thursday, May 17

RootLayoutPanel versus RootPanel with ScrollPanel

2012-05-13 Thread Mike Dee
-toolkit/doc/latest/DevGuideUiCellWidgets (scroll down to Custom Data Source to see the code). Question is, why doesn't this work when RootPanel is replaced with RootLayoutPanel? No scroll bars appear at all, and that is what I'm experiencing in my app. Mike public class

Text in a glContext

2012-05-13 Thread mike gray
I would like to be able to render text in a glContext. In JOGL and OPENGL there are ways of rendering a string of text into the gl context without having to create textures. Is thre a simial method of rendering text in a WebGLCanvas context? -- You received this message because you are

Re: How to determine CellTable row height?

2012-05-09 Thread Mike Dee
handler. Maybe that would be a more modern way to provide tabular data? Mike On Wednesday, May 9, 2012 7:13:33 AM UTC-7, Andrei wrote: If your data never wraps within a cell, then the height of the row is always the same - it is determined by the CSS. (As a sidenote, you can change it in your

How to determine CellTable row height?

2012-05-08 Thread Mike Dee
ideas? Mike -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/8HmHgql2vTAJ. To post to this group, send email to google-web-toolkit@googlegroups.com

Catch-22 with Celltable and AsyncDataProvider

2012-05-05 Thread Mike Dee
According to the Celltable Developers Guide here: https://developers.google.com/web-toolkit/doc/latest/DevGuideUiCellTable The example given for AsyncDataProvider seems to have a flaw here when setting the row count. // Add the columns. table.addColumn(nameColumn, Name);

Editors and automatic object updates/change propagation.

2012-04-30 Thread Mike
It appears that the GWT Editor framework only supports explicitly pushing updates to the object being edited by calling the driver's flush() method. However, I want to validate properties as they are changed. Thus in the case of a data-bound form, I'd like to validate a property as soon as the

Re: Couple CSS questions

2012-04-24 Thread Mike Dee
But the question remains, why doesn't changing the gwt-DateBox CSS affect the appearance of the DatabBox? In my case, the standard.css was replaced with my own. So, why aren't my changes having any effect? -- You received this message because you are subscribed to the Google Groups Google

Re: Recruiting

2012-04-19 Thread Mike Dee
I've had the same problem. Put a post in gwt jobs group, but little response. Difficult to find good developers and gwt, in particular. Mike On Wednesday, April 18, 2012 1:17:52 AM UTC-7, Thomas Lefort wrote: Hi Thanks. I did try (this is what I called the dedicated group) and got a couple

Re: Resolution Dependent ImageBundles

2012-04-19 Thread Mike Dee
Shouldn't the image size remain constant with screen resolution? Otherwise there would be a similar need on desktops. Are you specifying image size in pixels? Could you use percent? Mike On Tuesday, April 17, 2012 2:21:41 AM UTC-7, Evan Ruff wrote: Hey guys, /div So I#39;m designing

Re: Call for action: Time to rethink a road-map and more frequent updates for GWT.

2012-04-18 Thread Mike Dee
killing it (should it do so). Ideally, I'd like to see at least two years of roadmap. Mike On Monday, April 2, 2012 8:19:16 AM UTC-7, Joshua Kappon wrote: With the rise of the new developers.google.com, and with Google trying to rally up developers using Google technologies and products

Web app design with GWT

2012-03-29 Thread Mike Dee
I've been working with GWT for 6+ months now. I don't have much interaction with other GWT developers. Thankfully, this group has been helpful in getting up to speed. I've built many traditionally designed web apps (JSP, PHP, etc). With GWT the way I design a web app is a little different.

GWT Designer Not Visiible in IDE

2012-02-10 Thread Mike
I installed GWT for Eclipse including the Designer, however I have yet to figure out how to open a View in Design mode. There is no Design tab, button or show view link in the Window menu ...where is it?? - thx Mike -- You received this message because you are subscribed to the Google

Re: GWT Designer Not Visiible in IDE

2012-02-10 Thread Mike
I downloaded the google sample MVP code (Contacts) and am trying to look at one one of the View Java files ContactsView.java in Design mode. Is that not possible? On Feb 10, 1:47 pm, Eric Clayberg (Google) clayb...@google.com wrote: Have you tried opening a UI file (UiBinder XML file or GWT

Re: Inner Activity Place Token Changes

2012-01-23 Thread Mike H
In our application, the Mapper passes the info from the Place to a setter exposed by the Activity, just as you have done below. In my attempt 1, the code to re-apply the filter is in the setFilter method - it checks if the Activity has started, and then applies the passed filter. If it not, it is

Re: Inner Activity Place Token Changes

2012-01-22 Thread Mike H
Thanks for taking the time to read my post and reply Thomas. So, just to make sure I understand, have you implemented the Activity as a singleton to prevent the Activity Manager reloading the same activity? If so, do you still need to know in the Activity if it is currently in a started state?

Re: Inner Activity Place Token Changes

2012-01-22 Thread Mike H
-performance GWT: best practices for writing smaller, faster apps talks a little about this.  If you haven't watched the video yet, it might be worth your time. On Jan 22, 11:38 am, Mike H mike.m.her...@googlemail.com wrote: Thanks for taking the time to read my post and reply Thomas. So

Inner Activity Place Token Changes

2012-01-21 Thread Mike H
on the Activity - but this was such a hack to implement it just felt wrong. So my questions are: 1. Is this an appropriate use of Activities and Places? 2. Has anyone else implemented something similar? If so, how? Thanks Mike -- You received this message because you are subscribed to the Google

Re: Help with resizing

2012-01-20 Thread Mike Dee
FANTASTIC, that worked. Not sure if I understand all the nuances of uibinder yet. Thank you. And Thank you Patrick too. On Jan 19, 8:59 pm, Ashwin Desikan ashwin.desi...@gmail.com wrote: Mike, In your ui:binder you are using a SplitlayoutPanel. You have to use the same for the variable

Re: Help with resizing

2012-01-19 Thread Mike Dee
to interpret the uibinder code. It seems like this would be a common practice - to extend GWT widgets - and so I assume it isn't too difficult.  Any pointers? Mike On Dec 28 2011, 8:53 pm, Ashwin Desikan ashwin.desi...@gmail.com wrote: Mike, As long as you have a default constrictor

Re: Help with resizing

2012-01-17 Thread Mike Dee
. It seems like this would be a common practice - to extend GWT widgets - and so I assume it isn't too difficult. Any pointers? Mike On Dec 28 2011, 8:53 pm, Ashwin Desikan ashwin.desi...@gmail.com wrote: Mike, As long as you have a default constrictor in your derivedayout panel, you should be able

SplitLayoutPanel and deferred resizing

2012-01-14 Thread Mike Dee
I've been trying to figure out how to get resize events when the SplitLayoutPanel's splitter is moved. This question has been asked many times before, such as here:

Re: Handling styles application wide?

2012-01-11 Thread Mike Dee
TableResources, Application Images, Custom Styles etc. Make it a practise to use the styles defined in your external stylesheets across the application and your maintenance would become relatively easier. ~Ashwin On Wednesday 11 January 2012 09:53:38 AM IST, Mike Dee wrote: What

Handling styles application wide?

2012-01-10 Thread Mike Dee
What is a good ways to consistently handle styles application side? I'm working on an app that has CellTables and widgets and HTML. For CellTables we use CellTable.Resources to store CSS. For widgets, we use uibinder with ui:style for HTML we use external stylesheets. Is there a good strategy

  1   2   3   4   >