Centering an Image

2012-01-06 Thread Mike Dee
How can I center an image in a panel? I have a layout that looks like this: Vertical Panel Cell Table Simple Panel Image Cell Table Basically, this shows an image with a table of data above and a table of data below. I can't get the image to center, however. In this case I tried a

Re: Centering an Image

2012-01-06 Thread Mike Dee
I found one way to do this. I used a HorizontalPanel as a container for the image, instead of a SimplePanel. On Jan 6, 9:11 am, Mike Dee mdichiapp...@gmail.com wrote: How can I center an image in a panel?  I have a layout that looks like this: Vertical Panel   Cell Table   Simple Panel

Re: Help with resizing

2011-12-28 Thread Mike Dee
ResizeRequired. So, now I am figuring out how to get a hold of SplitLayoutPanel's onResize() to override. I've created a derived panel, called MySplitLayoutPanel. Currently trying to figure out how to make this work with uibinder. Mike On Dec 28, 1:16 am, Ashwin Desikan ashwin.desi...@gmail.com

Help with resizing

2011-12-27 Thread Mike Dee
I can't get onResize() to be called on some of my panels. I'm using Activities and Places. The top level panel is a DockLayoutPanel. All of the activity happens in the center panel. The view I'm having trouble with looks like this. public class MyViewImpl extends ResizeComposite implements

Re: Help with resizing

2011-12-27 Thread Mike Dee
Played around with this a little more and came to a few conclusions. I am guessing that adding a ResizeHandler to SplitLayoutPanel has no effect because SplitLayoutPanel already implements onResize() - due to its implementing RequiresResize. I can see SplitLayoutPanel's onResize() being called by

RequestFactory ValidationTool

2011-12-20 Thread Mike Breytenbach
Hi I'm trying to learn how to use RequestFactory. I created a new App Engine Connected Android project. In the shared MyRequestFactory class I then add RequestString getSomethingElse(); to the code below, just before the closing curly bracket.

Re: Multiple gwt-rpc calls and UI

2011-12-16 Thread Mike Dee
that actually do work. I'm looking into this latter option. If that doesn't work out, then I will have to consider RF. One possibility is to use RF with simply ValueProxy's. This kind of reminds me of how early j2ee developers largely avoided EntityBeans in favor of SessionBeans! Mike On Dec 14, 11

Multiple gwt-rpc calls and UI

2011-12-14 Thread Mike Dee
What is a preferable way to do multiple gwt-rpc calls to setup a UI? In particular, we have a view that requires several successive calls (order is important) to the database to setup. This is necessary because there is a stateful part to our app. For example, first we have to load A and once we

Re: Sessions and Activities and Places

2011-11-14 Thread Mike Dee
I'm sorry, I don't think I understand this. How would a separate GWT module help? Wouldn't a separate module (with separate URL) produce a separate session? On Nov 13, 9:54 pm, -sowdri- sow...@gmail.com wrote: Have your tried moving login part to a separate GWT module, with a different url

Re: Sessions and Activities and Places

2011-11-14 Thread Mike Dee
); else super.goTo( new LoginPlace() ); } It seems to work well. Handles pages that are bookmarked and the back button. On Nov 12, 5:43 pm, Mike Dee mdichiapp...@gmail.com wrote: What is a good way to have a GWT app redirect to a login screen when a session

Sessions and Activities and Places

2011-11-12 Thread Mike Dee
What is a good way to have a GWT app redirect to a login screen when a session expires? I've just hooked up a login page and a logout button at an Activities and Places app. I basically handle this through the event bus with login and logout events (haven't hooked up a session time out yet).

Re: websites designed with GWT are mobile browser compatible?

2011-10-28 Thread Mike Morearty
The FAQhttp://code.google.com/webtoolkit/doc/latest/FAQ_GettingStarted.html#What_browsers_does_GWT_support?lists support for the below list of browsers, which are all desktop browsers. Is there information on which mobile browsers, specifically, are supported? For example, I assume Android

Re: Popup windows printing

2011-10-27 Thread Mike Dee
/browse_thread/threa... regards 2011/10/27 Mike Dee mdichiapp...@gmail.com It seems easy to popup a new window, but I'm not sure how to stick the HTML into it.  If Window.open would return a reference to the window, I could see a way to do it. Here is another idea.  I can create

Re: Popup windows printing

2011-10-27 Thread Mike Dee
Did that. Seems to work. Have to figure out CSS issues. Experimenting now with using separate module. On Oct 27, 6:55 am, Jeffrey Chimene jchim...@gmail.com wrote: On 10/26/2011 9:02 PM, Mike Dee wrote: It seems easy topopupa new window, but I'm not sure how to stick the HTML

Re: Popup windows printing

2011-10-27 Thread Mike Dee
. Then I'd need to check on how session sharing works between JSP and GWT. On Oct 27, 12:19 pm, Mike Dee mdichiapp...@gmail.com wrote: Did that.  Seems to work.  Have to figure out CSS issues. Experimenting now with using separate module. On Oct 27, 6:55 am, Jeffrey Chimene jchim...@gmail.com

Popup windows printing

2011-10-26 Thread Mike Dee
I have an app that creates reports, which are basically HTML. The reports need to be printed and that is what I'm trying to figure out. I'm porting an older app - that is more of traditional web app. Reports are displayed in a page - with a UI wrapped around them. When a user wants to print a

Re: Popup windows printing

2011-10-26 Thread Mike Dee
a straight HTML window? On Oct 26, 7:55 am, Jeffrey Chimene jchim...@gmail.com wrote: On 10/26/2011 1:02 AM, Mike Dee wrote: I have an app that creates reports, which are basically HTML.  The reports need to be printed and that is what I'm trying to figure out. I'm porting

Re: Popup windows printing

2011-10-26 Thread Mike Dee
much hacking) and allows a different layout from main app. On Oct 26, 9:07 am, Jeff Chimene jchim...@gmail.com wrote: On 10/26/2011 08:38 AM, Mike Dee wrote: I was thinking about something like that.  In the posts about popup windows this is seen as a negative because it is tricky to setup

Lost with CssResource

2011-10-20 Thread Mike Dee
#1 At: http://code.google.com/webtoolkit/doc/latest/DevGuideClientBundle.html#CssResourceCookbook It says: External and legacy scopes In many cases, newly-developed CSS will need to be combined with external or legacy CSS. The @external at-rule can be used to suppress selector obfuscation while

Re: How to set stylesheet on a per page basis?

2011-10-19 Thread Mike Dee
); button .addStyleName(resources.css().className()); S. Abrahamwww.DataStoreGwt.com Persist objects directly in Google App Engine On Oct 19, 12:37 am, Mike Dee mdichiapp...@gmail.com wrote: How can a stylesheet be applied for one page - not an entire module? Our app runs fine with a single

How to set stylesheet on a per page basis?

2011-10-18 Thread Mike Dee
How can a stylesheet be applied for one page - not an entire module? Our app runs fine with a single stylesheet, but for a couple of pages a client specified look and feel (with CSS) are needed. I'd like to apply (add) an additional stylesheet to just those. How can that be done? Thanks, Mike

Re: How to set stylesheet on a per page basis?

2011-10-18 Thread Mike Dee
UIBinder. However, the path is a little problematic. The above example works because I put the CSS in the same directory as the view class and its ui.xml. How can I put the CSS file in the directory with the web pages (war)? On Oct 18, 12:37 pm, Mike Dee mdichiapp...@gmail.com wrote: How can

Re: How to set stylesheet on a per page basis?

2011-10-18 Thread Mike Dee
After doing some testing, it doesn't looks like this works as expected. It appears that after adding: ui:style src=mycss.css/ that the CSS in that stylesheet appears in ALL pages, even though the above line only appears in on view's UIBinder code. On Oct 18, 12:53 pm, Mike Dee mdichiapp

Re: What's a good widget for a small table?

2011-10-08 Thread Mike Dee
., 22:45, Jeff Chimene jchim...@gmail.com     mailto:jchim...@gmail.com wrote:     On 10/07/2011 01:38 PM, Mike Dee wrote:     I have small data tables that I'd like to display.  In the widget     showcase for DataGrid and CellTable it says they are ideal for     large     amounts

Re: Passing an argument to a View using Activities and Places

2011-10-08 Thread Mike Dee
Jens, Allison, Yes, I see my problem. I even used the GWT MVP View wizard to create the Place, Activity, and View. It very nicely generates template classes - with the FooPlace.setName(). I must have deleted the method in FooPlace at some point. Thanks, Mike On Oct 6, 1:38 pm, Jens

What's a good widget for a small table?

2011-10-07 Thread Mike Dee
I have small data tables that I'd like to display. In the widget showcase for DataGrid and CellTable it says they are ideal for large amounts of data. The goal is to display detail info. For example, to display a single record from a database - not a bunch of records from a database. So the

Passing an argument to a View using Activities and Places

2011-10-06 Thread Mike Dee
I'm using Activities and Place and can't figure this out. I've been looking at samples but don't see it in there. I think I'm missing something. I have a button in one place that, when clicked, will trigger a new activity and place (along with a new view). The code for that button simply looks

Re: Passing an argument to a View using Activities and Places

2011-10-06 Thread Mike Dee
Just want to add one thing. FooView has a method named setName(), which (I think) is used to set the argument. I've noticed this is not called, even though it is passed in creating the FooPlace. On Oct 6, 10:17 am, Mike Dee mdichiapp...@gmail.com wrote: I'm using Activities and Place and can't

Re: Passing an argument to a View using Activities and Places

2011-10-06 Thread Mike Dee
in the FooView. Place and View do not interact with each other directly. Alisson Presteswww.google.com/profiles/javalisson On Thu, Oct 6, 2011 at 2:17 PM, Mike Dee mdichiapp...@gmail.com wrote: I'm using Activities and Place and can't figure this out.  I've been looking at samples but don't

Re: Passing an argument to a View using Activities and Places

2011-10-06 Thread Mike Dee
Would the call to set the arg in the view go in FooActivity.start()? On Oct 6, 10:46 am, Mike Dee mdichiapp...@gmail.com wrote: So, should I put code in FooActivity?  I am not sure if the boilerplate code generated by the activity should have done that or not. On Oct 6, 10:44 am, Alisson

Re: Passing an argument to a View using Activities and Places

2011-10-06 Thread Mike Dee
= clientFactory; } But I don't know how to get the argument (token) out of FooPlace. On Oct 6, 10:51 am, Alisson Prestes javalis...@gmail.com wrote: Yes, I think this will work. Alisson Presteswww.google.com/profiles/javalisson On Thu, Oct 6, 2011 at 2:48 PM, Mike Dee mdichiapp...@gmail.com wrote

PlaceHistoryHandler for URL with multiple args

2011-10-03 Thread Mike Dee
Just wondering about how to go about implementing a history mechanism (using Activities and Places) for URLs with multiple arguments. For example, lets say I want a book search url (call it BookSearch) to be bookmarkable and have multiple arguments. In a traditional web app the URL may look like

CellSampler

2011-09-30 Thread Mike Dee
in the gwt javadoc. This would be a great example if it were simpler to understand. Mike -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group

Re: Basic CSS question

2011-09-26 Thread Mike Dee
Sorry, was a way for a week. Thanks, I got this working. I started over from scratch and it worked. Must have been something in there that I did (while experimenting) that prevented it from working. Mike On Sep 15, 12:18 pm, Ernesto Oltra ernestoka...@gmail.com wrote: The documentation you

UIBinder, HTMLPanel, and style interactions

2011-09-26 Thread Mike Dee
; right: 0px; bottom: 0px; divSome Text Here/div /div /div Why does the DIV have both a class and a style? Where does the style come from (the DockLayoutPanel)? Mike -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

rpc log files

2011-09-23 Thread Mike Dundee
Hello, I've found out that GWT 2.3 compiler does not generate rpc.log files any more. Version 2.1 generated these handy files (we could then trace why specific objects could not be serialized, why they are not reachable etc.) Is there any way to generate the rpc logs in GWT 2.3 ? (during both

Remote Logging

2011-09-16 Thread Mike
need to sure the common loggings library is accessible to Tomcat? Any suggestions will be greatly appreciated. Thanks, Mike -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit

Re: Basic CSS question

2011-09-15 Thread Mike Dee
. It is nice to have step by step just-do-it-this-way instructions. But when that doesn't work, I have no idea why I am doing what I am doing. Seems like the docs are written for those who already understand GWT, which kind of defeats the purpose. Mike On Sep 8, 1:23 pm, Ernesto Oltra ernestoka

Re: Basic CSS question

2011-09-15 Thread Mike Dee
is) to com.mycompany.myapp.resources. I don't think GwtDesigner knows to look there. I guess a copy of myapp.css could be left in both places, but I'll probably forget to keep them in sync. On Sep 15, 9:12 am, Mike Dee mdichiapp...@gmail.com wrote: I've been playing around with this for a couple of days, to great

Basic CSS question

2011-09-08 Thread Mike Dee
in standard.css. My (probably faulty) understanding of CSS is that the properties set in the body would be inherited by other elements. MIke -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit

Re: Basic CSS question

2011-09-08 Thread Mike Dee
What does injecting mean in terms of CSS? Sounds like this may alter the way cascading works in a typical web site/app? On Sep 8, 11:47 am, Ernesto Oltra ernestoka...@gmail.com wrote: Hi, Use Firebug or Chrome Dev Tools to see the cascade of styles, because I had some hard times with that.

HTML and printing in GWT

2011-09-06 Thread Mike Dee
Looking at moving our (old) app to GWT. Have pieces of the app working and thinking about parts that may be difficult to move over. One thing we do is to create reports that are formatted in HTML and depend on the browser(s) to print. A report may be a few pages long. We currently create a

Re: gwt 2.3 + spring 2 + maven 2

2011-09-02 Thread Mike Chai
Thanks for the responses. To clarify, I want to use GWT to build an interface for an existing Java backend that is using Spring. Integration using the STS isn't needed but I'll probably do it anyways. Is there a way to do this without using hackish methods? On Aug 18, 6:31 am, Giuseppe La Scaleia

WindowBuilder/GWT Designer error

2011-08-30 Thread Mike Dee
I notice the reference to projdata. What does this mean? Thanks, Mike -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email

Re: WindowBuilder/GWT Designer error

2011-08-30 Thread Mike Dee
Konstantin, I sent the .project and .classpath to you directly. Any tips on how to workaround this? I am stuck right now. Can't even create a blank uibinder file and edit it in GWT Designer. Thanks, Mike On Aug 30, 8:14 pm, Konstantin Scheglov scheg...@google.com wrote: Can you send your

Re: WindowBuilder/GWT Designer error

2011-08-30 Thread Mike Dee
the JARs (which contain source) and the other through the project references? For now, this seems to be a workaround. The GWT Designer comes up in design mode, the project compiles, and the app runs. On Aug 30, 9:29 pm, Mike Dee mdichiapp...@gmail.com wrote: Konstantin, I sent the .project

Re: Using GWT Designer with UIBinder and Internaltionalization

2011-08-26 Thread Mike Dee
I'm having the same problem. The external strings button is missing when working with a uibinder XML file. On Jul 11, 10:55 am, Greg boavi...@gmail.com wrote: Hi, I'm trying to start a new application using the new UIBinder with help of GWT Designer. Moreover, the application needs to support

gwt 2.3 + spring 2 + maven 2

2011-08-17 Thread Mike Chai
I'm new developing web applications with Java, so maybe this is implicitly known in the community but upon trying to search for integration for these 3 technologies I couldn't find a very straightforward answer. Some information is dated back to 2008ish where some people created glue to integrate

Activities and Places and Layouts (again)

2011-08-15 Thread Mike Dee
OR am I heading down the wrong path? Any ideas? Mike -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit

Eclipse, Maven, GWT: Multiple modules in a single Eclipse project

2011-08-15 Thread Mike
Hi, we have an existing web application (JSF, Seam on JBoss) and are reimplementing portions of it in GWT. These portions will be separate GWT modules, each with their own entry point. The application is currently a single Eclipse project with Maven handling dependency management and the GWT

Re: Activities and Places and Layouts (again)

2011-08-15 Thread Mike Dee
/ requires resize. That is the way resize events get propagated to child elements in gwt. On Aug 15, 8:00 am, Mike Dee mdichiapp...@gmail.com wrote: Getting started with Activities and Places.  I'd like to use a DockLayoutPanel to comprise the entire view (page).  When I try, it doesn't work

Re: Eclipse, Maven, GWT: Multiple modules in a single Eclipse project

2011-08-15 Thread Mike
:07 am, Mike mreynolds0...@gmail.com wrote: Hi, we have an existing web application (JSF, Seam on JBoss) and are reimplementing portions of it in GWT.  These portions will be separate GWT modules, each with their own entry point.  The application is currently a single Eclipse project with Maven

Re: Activities and Places and Layouts (again)

2011-08-15 Thread Mike Dee
be user account settings. All completely different places with completely different page layouts. Mike On Aug 15, 8:29 am, Jens jens.nehlme...@gmail.com wrote: I think you should use SimpleLayoutPanel appWidget = new SimpleLayoutPanel(); RootLayoutPanel.get().add(appWidget); Now you should

Re: Activities and Places and Layouts (again)

2011-08-15 Thread Mike Dee
position (north, south, etc). However, on the page I only see the north cell. I've set the SimplePanel's width/height to 100% as well as the DockLayoutPanel's width and height to 100%. Thanks, Mike On Aug 15, 9:01 am, DaveC david.andrew.chap...@gmail.com wrote: Hi Mike, I'm trying

Re: Activities and Places and Layouts (again)

2011-08-15 Thread Mike Dee
Dave, I think you got it. Double checked and wasn't setting height to 100%. Thanks, that seems to have done it. Thought I was doing that. Mike On Aug 15, 9:01 am, DaveC david.andrew.chap...@gmail.com wrote: Hi Mike, I'm trying to understand your issue... I'm assuming

Activities and Places and Layouts (again)

2011-08-14 Thread Mike Dee
is not that common or I misunderstand Activities Places, probably Presenters in particular. Does it make sense in the above scenario to use one presenter per place? Maybe a presenter is not intended to be used for complex/compound layouts like dock and tabbed panels? Mike -- You received this message

RPC and server side classes

2011-08-03 Thread Mike Dee
an RPC. Any ideas? Thanks, Mike -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr

Re: RPC and server side classes

2011-08-03 Thread Mike Dee
client and server side, so you must put old project as a jar and define *.gwt.xml inside and define the module. In NewUiProject inherit it. You can't said that the POJO is only in server side if RPC layer try serialize/deseralize Juan 2011/8/3 Mike Dee mdichiapp...@gmail.com I'm

Re: RPC and server side classes

2011-08-03 Thread Mike Dee
tried doing a GWTCompile and looking at the output. I don't see classes from OldProject in the WAR for NewUiProject...even when I include the OldProject.jar! But, maybe I don't understand enough about how GWT works? Mike On Aug 3, 11:49 am, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote

Re: RPC and server side classes

2011-08-03 Thread Mike Dee
Yep, that seems to have fixed it. Thanks, Mike On Aug 3, 1:03 pm, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: This static variable isn't affect. You must put oldproject jar in WEB-INF/lib, isn't run in dev mode? 2011/8/3 Mike Dee mdichiapp...@gmail.com Juan, I thought you

JSNI and Actuate

2011-07-28 Thread mike b
I'm trying to use JSNI to wrap Actate's JSAPI and have GWT control my BI environment. I've done searches and read the docs. I've seen the scriptaculous stuff and browsed the Tatami code for samples. However, I'm still having problems getting an Actuate javascript constructor to work

Controlling BIRT with GWT

2011-07-12 Thread mike b
to the user. Was thinking of putting the BIRT scripts into a separate js file, or possibly putting pasting them into a Java class. Ideas? Thanks, mike -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web

Re: GWT + UIBinder

2011-07-01 Thread Mike Dee
/ classpathentry kind=con path=org.eclipse.jdt.launching.JRE_CONTAINER/ classpathentry kind=output path=war/WEB-INF/classes/ /classpath Mike On Jul 1, 7:28 am, Eric Clayberg clayb...@google.com wrote: What other versions of GWT do you have installed locally? What version of GWT

Re: GWT + UIBinder

2011-06-30 Thread Mike Dee
.r36x201106161115 Any ideas? Thanks, Mike On Jun 29, 6:30 am, Eric Clayberg clayb...@google.com wrote: What other versions of GWT do you have installed locally? What version of GWT is being used with this project? I'm guessing that it is not 2.3.0. On Jun 29, 2:46 am,MikeDeemdichiapp

Re: GWT + UIBinder

2011-06-30 Thread Mike Dee
for 3.7 yet. On Jun 29, 12:51 am, Russ 10wattmindt...@gmail.com wrote: Perhaps try Eclipse 3.7. I think it's now included with the default install. On Wed, Jun 29, 2011 at 2:46 AM, Mike Dee mdichiapp...@cardeatech.comwrote: Trying to build a new WindowBuilder project in Eclipse as New

GWT + UIBinder

2011-06-29 Thread Mike Dee
, Google Plugin for Eclipse 2.3.2, GWT Designer Editor 2.3.2. Any clues? Thanks, Mike -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group

dynatablerf won't build

2011-06-27 Thread Mike Dee
, Mike -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com. For more options

Re: how to reposition the popup when window gets resized

2011-05-02 Thread mike b
If you find an elegant solution, please post it. I have the same thing on my to do list. Thx -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from

Re: Creating a select all/none checkbox for a CellTable

2011-04-18 Thread mike b
How many are rendered on the screen at once? If you have 50+ or 100+ on the screen, then I can see how this could slow down. You might want to use paging like in the CwCellList sample. From my experience, the expensive stuff is the rendering, so we try to minimize that as much as possible.

Re: How to speed up Hosted mode

2011-04-18 Thread mike b
FYI... below are my specs. We have about 50 Views across 6 async modules ( as defined by mvp4g). Refresh on my system only takes a few seconds. On my co-worker's identical machine it takes 10+ seconds. The only difference that I know of is that he is using the gwt 2.1.1 eclipse plugin.

Re: Odg.: Re: How to speed up Hosted mode

2011-04-18 Thread mike b
than everythying? This conversation just went out of my (so seamingly small) realm of knowledge!!! Good luck, Mike -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com

Most efficient way to structure an object wrapper?

2011-04-18 Thread Mike
I need to pass key/value pairs via RPC. The value may be any primitive or java.util.Date. I plan to create a Serializable TransferValue class that, in turn, contains the actual value. There are 3 approaches I can take, but not sure which would be the most efficient: 1) Declare one java.lang.*

CellWidget - what is it good for?

2011-04-05 Thread mike b
gwt 2.2.0 I'm speaking specifically about the com.google.gwt.user.cellview.client.CellWidget class, not the entire Cell Widget library. Recently, I have been trying to make more robust Cells that can expand and do interesting dynamic things, rather than just sit there dead (after being

Re: Can't refresh CellTable

2011-04-05 Thread mike b
We're having the same problem getting a CheckBoxCell to go from un-checked to checked to un-checked... I can see in Firebug where the HTML input does NOT have checked in it, but it still shows a checked box. This is what we had to do... Its ugly but it works consistently.

Re: CellWidget - what is it good for?

2011-04-05 Thread mike b
Thanks for the responses!! Ok, I guess that makes sense. Hopefully I'll never have to re-use something that I hand coded in HTML though. I started in GWT b/c I *DIDN'T* want to hand roll my HTML. Now How do I make a WidgetCell in which I can re-use Widgets (or Composites) in a Cell?

Re: How to host GWT in a google-site page?

2011-04-01 Thread mike b
I would think that you don't upload any GWT js to your google site. You'll need to have your GWT app hosted on a webserver somewhere, possibly the GAE. Then add a script element in the site HTML referencing the hosted location of the js file. You'll have to make sure that your EntryPoint

Re: How to host GWT in a google-site page?

2011-04-01 Thread mike b
oh yeah... please report back how it worked. I might actually be trying to do something like that myself soon. I'd be interested to see what you turned out. thx, mikeb -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: CellTable, multiple cells, FlexTable and thoughs

2011-04-01 Thread mike b
I'll 2nd that. There is working example in the samples. Look for ContactTreeViewModel.java in the samples included in the SDK. I'm greatly frustrated by the lack of ability to use GWT widgets with in a GWT CellTable (as well as CellList and CellTree). My goal is to have expandable cells

Re: symbolMap files

2011-03-31 Thread mike b
Thx for the reply. I see the -deploy now, thanks for that reference. I'm on windoze, so I don't know of a /dev/null equivalent. So, I'm just throwing them into another directory that our ant build deletes before each build. Thx again, mikeb -- You received this message because you are

symbolMap files

2011-03-30 Thread mike b
5BC025F5BBD74D2F5CA50D9038A7E765.symbolMap After upgrading to GWT 2.2.0, I know have 57MB of these symbolMap files being generated. They appear to be unnecessary for me as my app runs just fine without them being deployed. Is there a flag I can set to turn them off? The documentation under

GWT and native encoding

2011-03-03 Thread Mike
Hi all, I'm considering using GWT for a rewrite of an old (very large and quite complex) corporate application. One of our main requirements is to support native encodings (other than UTF-8) for data input by the users. I know, why wouldn't I use UTF-8, right? In short, this data is to be sent

Multiple requests in one context

2011-02-19 Thread Mike Limansky
Hi all. We are using GWT in our project. And we got the problem related with RequestFactory. The problem is following. Let's we have a some entity class which contain some formula and a data to evolute it. The calculation is performed on the server side. We are using RequestFactory to get

HTML 5 FILE API

2011-02-17 Thread MIKE
Any example out there, could anyone please show me how to use HTML5 API to upload file Please ? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from

Scrolling problem in CellList with IE7

2011-02-16 Thread mike b
gwt 2.1.0 ie7 *Problem*: In ie7, I cannot scroll using the mouse wheel using a CellList unless the mouse cursor is over text. Strangely, the CellList sample shows the correct behavior. To duplicate of what I am seeing, look a the CellList Source Code (CwCellList.ui.xml). Put your mouse

showcase scrollable pager

2011-02-14 Thread MIKE
I would like to use that showcaes ScrollPanel Pager with the CellList from the example. http://google-web-toolkit.googlecode.com/svn/javadoc/2.1/com/google/gwt/view/client/AsyncDataProvider.html In TestScrollPanel.ui.xml, g:VerticalPanel ui:field=uiVPanel s:ScrollPagerPanel

showcase from gwt examples

2011-02-12 Thread MIKE
Trying to run showcase example and get the following error. [ERROR] [t] - No resource found for key 'contactDatabaseCategories' com.google.gwt.i18n.rebind.AbstractResource$MissingResourceException: No resource found for key 'contactDatabaseCategories' [ERROR] [t] - Deferred binding failed for

Re: CellList alternating row background color

2011-02-09 Thread Mike
So I've been trying to figure this out, and I'm just really still missing something... here's as far as I've gotten. I can't seem to wrap my head around how I get from here to using a custom style for the cellList. Anyone feel like writing me a little bit of sample code? Thanks, -Mike

Re: Firefox ONPASTE: Get the text to be pasted?

2011-02-03 Thread mike b
On second thought... Change this line - this.setValue(newValue, true); To this -- ValueChangeEvent.fireIfNotEqual(this, this.getValue(), newValue); -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

celltable BeforeSelectionEvent?

2011-02-03 Thread Mike Wyszinski
i am implementing a screen with a CellTable detail form. I want to be able to intercept selection change events AND CANCEL THEM, if the user has made unsaved changes in the detail form. Is there any way to do this with the cell table? Thanks Mike -- You received this message because you

Re: Firefox ONPASTE: Get the text to be pasted?

2011-01-31 Thread mike b
Thanks for posting this! Very helpful! I did variation on the theme. I created a class called XTextBox (and XTextArea) which catches the ONPASTE and then fires the ValueChangedEvent. This is useful because all I need to do is call the textBox.addValueChangeHandler(aHandler) in my presenter

Powered by Google Technologies

2011-01-30 Thread Mike
Wanted to share our project called CitySale.ca which is built entirely on the Google stack: Google APIs - App Engine, GWT, Maps, Fusion Tables, Geocoding, Places, Search, ... Google Tools - Analytics, DoubleClick, Webmaster The GWT Client and the App Engine based server are also deeply

Re: How to override CellTable css

2011-01-27 Thread mike b
thanks to everyone who posted comments here. This has really helped me as well as I had problem styling the CellList. The same pattern works there as well. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Out of stack space

2011-01-20 Thread mike b
successfully. Any ideas? I searched this forum and the gwt issues but did not find anything remotely similar. Thanks, Mike B -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit

Re: GWT project layout question featuring git, maven and 100 developers

2011-01-20 Thread mike b
think about compile times. We have 6 modules on our small project. Compile time for all code including jar, war, and ear files is 7 minutes on a fast quad core 4GB ram machine. IMO the more modules you have, the longer it takes. There might be a better way to optimize (yes, I'm using

Re: Out of stack space

2011-01-20 Thread mike b
yeah... total loser error on this one. Im so used to boiler plate code now that I didn't see my own error!!! -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To

Re: CellList alternating row background color

2011-01-14 Thread Mike
OK, so I've got a autogenerated cellList.resource being passed to the cellList constructor, but I'm having some difficulty understanding how to apply a custom CSS as an override to the cellListStyle. Can anyone nudge me a little further in the right direction? Thanks, -Mike On Jan 11, 10:38 am

CellList alternating row background color

2011-01-11 Thread Mike
for even rows, and GL0PBETBK for odd rows. Though this does seem to work, I can't believe this is the right way to do this. Can anyone point me in the right direction for a less hacky solution? Thanks, -Mike -- You received this message because you are subscribed to the Google Groups Google Web

HandlerManager is deprecated and theres no removeHandler(...) method at SimpleEventBus class

2011-01-10 Thread Mike
Hi everybody, This is my scenario. My app is designed using Tabs concepts. Sometimes the Tab 1 wanna be notified about something that happens on Tab 2-N. For that, I have a singleton instance of HandlerManager. Now imagine this: the user closed the tab 1. I think is a good idea keep my

Re: HandlerManager is deprecated and theres no removeHandler(...) method at SimpleEventBus class

2011-01-10 Thread Mike
the handler.  Just hold onto those objects somewhere, and when your tab gets closed, have them all cleaned up. -Ben On Jan 10, 8:40 am, Mike mikematsum...@gmail.com wrote: Hi everybody, This is my scenario. My app is designed using Tabs concepts. Sometimes the Tab 1 wanna be notified

Re: Autobean frozen problem when reusing editors

2011-01-01 Thread Mike Guo
I am trying to reproduce this in a small example. However, it seems that this does not happen, when the ListEditor manages a list of LeafValueEditors, which is not the case in my application. I am a little bit confused about the whole LeafValueEditor-concept. Should my ListEditor always be

<    1   2   3   4   >