Re: Multiple editors for the same object

2011-01-01 Thread Mike Guo
Editor can be flexible, it can be embedded, assembled and multiple editors for the same object is also possible. but first of all you have to organized it clearly, the key is separate the data from a view. -- You received this message because you are subscribed to the Google Groups Google Web

Re: onResize issue with IE 7

2011-01-01 Thread mike b
the StackLayoutPanel and get to the layoutPanel it has. Thanks in advance, 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-tool...@googlegroups.com. To unsubscribe from this group

Re: onResize issue with IE 7

2011-01-01 Thread mike b
Doh! Looks like the above mentioned Issue link supplies a native javascript method to call the forceLayout(). -- 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-tool...@googlegroups.com. To

requestFactory, how to get entity proxy transitively

2010-12-28 Thread Mike Guo
@Entity class A { SetB bs; } @Entity class B { C c; } @Entity class C { } i didn't type annotation for brevity. from client, using requestFactory i can get Aproxy with Bproxy inside, say, from client i can get all Bproxy in one Aproxy, but in the Bproxy the CProxy is null. i want

Re: requestFactory, how to get entity proxy transitively

2010-12-28 Thread Mike Guo
thanks very much Thomas, again. -- 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-tool...@googlegroups.com. To unsubscribe from this group, send email to

cellTable paging: server side query return wrong result using JPA

2010-12-25 Thread Mike
hi all: follow the well know expense example, i see the following code in Report.java: @SuppressWarnings(unchecked) public static ListReport findReportEntries(int firstResult, int maxResults) { EntityManager em = entityManager(); try { ListReport reportList =

Re: Editor Framework Questions

2010-12-25 Thread Mike
hi : i'm new to the Editor too, but to my understand, Editors are for displaying/editing data directly from server side. for example you have data in your DB, you retrieved it as Entity in your web server side, by using Editor you can edit and/or display it at client side with ease. seems

Re: cellTable paging: server side query return wrong result using JPA

2010-12-25 Thread Mike
another question, the JPQL query seems rarely function well, i checked if i use: ListPerson rl = em.createQuery( select o from Person o ).setFirstResult( startIndex ).setMaxResults( maxCount ).getResultList(); my first query using the startIndex=0; and maxCount=35, it return 35

how to make table auto-extend, just like new google group UI 's content view?

2010-12-25 Thread Mike
hi all: if you are using the new version of google group now, you must be feeling that it's much much more comfortable than the old ones, it's just like a desktop app with wonderful user experience. i'm more interested in the auto-extend cellList, i.e. if the scrollbar hit the end it display

Re: how to make table auto-extend, just like new google group UI 's content view?

2010-12-25 Thread Mike Guo
yes i said in my question i followed the cellList example, but they are different: cellList has a fixed height which make it scroll. my question is how to make the table *occupy the center page* just like google group center view does, rather than a fixed height. do i make it clear? -- You

Re: how to make table auto-extend, just like new google group UI 's content view?

2010-12-25 Thread Mike Guo
it's already in a docklayoutpanle: g:DockLayoutPanel g:north size=10/g:north g:west size=20/g:west g:center g:FlowPanel g:SimplePanel a:ShowMorePagerPanel addStyleNames='{style.scrollable}' ui:field='pagerPanel' / /g:SimplePanel /g:FlowPanel /g:center /g:DockLayoutPanel -- You received this

Re: Maven repository for GWT 2.1.1

2010-12-25 Thread Mike Guo
you need compile first before you run http://127.0.0.1:/Expenses.html -- 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-tool...@googlegroups.com. To unsubscribe from this group, send

Re: requestfactory: server side query using JPQL

2010-12-24 Thread Mike
thanks Y2i, you are right, i switch to the latest version impl of JPA, and it works! -- 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-tool...@googlegroups.com. To unsubscribe from this group,

Re: requestfactory: server side query using JPQL

2010-12-23 Thread Mike
yes of course, without where i can get all person object with address is null and not null. -- 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-tool...@googlegroups.com. To unsubscribe from this

Re: requestfactory: server side query using JPQL

2010-12-23 Thread Mike
i tried, unfortunately it does not work, but, if i use the following query: select o from Person as o where o.address IS not NULL it work fine and just get all person that their address is not null. what's wrong with the original query? -- You received this message because you are subscribed

Re: requestfactory, entityproxy has reference is always null

2010-12-22 Thread Mike
Thanks very much Broyer, i just miss the description in the doc. thanks -- 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-tool...@googlegroups.com. To unsubscribe from this group, send email to

requestfactory: server side query using JPQL

2010-12-22 Thread Mike
hi all: i use the following query in JPQL to query the people whose address column is empty. List rl = em.createQuery( select o from Person as o where o.address IS NULL ).setMaxResults( 50).getResultList(); ... this line of code always return an empty list, obviously the table does has

Re: DockLayoutPanel and StackLayoutPanel problems in IE7

2010-12-21 Thread mike b
jlaba...@google.com On Sun, Dec 19, 2010 at 10:52 AM, mike b mbaker.t...@gmail.com wrote: Hopefully someone can help with this issue.  I hvae been working on it for 3 days without success.  I am trying to get a StackLayoutPanel to display inside a DockLayoutPanel. GWT 2.1.0, mvp4g 1.2.0

Re: DockLayoutPanel and StackLayoutPanel problems in IE7

2010-12-21 Thread mike b
Also, this thread does not seem to be findable. When I search for DockLayoutPanel StackLayoutPanel IE7 only one result appears and its not this thread. Thanks, M On Dec 21, 10:46 am, mike b mbaker.t...@gmail.com wrote: So, I spent yesterday getting it to work in IE7 with unpredictable results

Re: DockLayoutPanel and StackLayoutPanel problems in IE7

2010-12-21 Thread mike b
...@gmail.com wrote: Hi, I'm using the new layout panels and works very well for me. Can you make a visual mock-up of your layout for the 5 levels? thanks. On Tue, Dec 21, 2010 at 1:00 PM, mike b mbaker.t...@gmail.com wrote: Also, this thread does not seem to be findable. When I search

requestfactory, entityproxy has reference is always null

2010-12-21 Thread Mike
hi all: suppose we have two entity proxy that has an reference relationship: class AProxy { BProxy getBproxy(); } class Bproxy { String getName(); ... } in UI, there is a list table used to display Aproxy, one column is BproxyName, but it is always null. seem when i fetch all A Entity in

DockLayoutPanel and StackLayoutPanel problems in IE7

2010-12-19 Thread mike b
and StackPanels, it all works great. Any ideas? Thanks in advance -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-tool...@googlegroups.com. To unsubscribe from this group, send email to google

Re: build GWT from source, only can do on Linux?

2010-12-15 Thread Mike
yes, i'm sure i put GWT_TOOLS right, because when i manually remove the tools folder, when compile, it pops GWT_TOOLS not set. i also followed the many threads talking about this topic, i tried nearly every methods but no luck, hope someone made this successfully shed some light on this.

compiler checking (in)valid JSNI syntaxt

2010-12-06 Thread Mike Dundee
Hello, I'm trying to integrate 3rd party javascript library into GWT. (Autodesk Design Review for displaying 3D models - works only in IE by the way) However I bumped into the following syntax, which is absolutely valid in this library: Content.Objects(1) = userCollection; so I used it in JSNI:

enum String value in JSNI

2010-12-06 Thread Mike Dundee
Hello, is there any way to obtain String value of enum in JSNI method? enum.toString() works only in hosted mode, but in production it gives me [object] [Object] Thank you -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: how to achieve pretty URLs in GWT 2.0 application

2010-12-01 Thread Mike
What I do in my apps is to support both hashed and pretty urls. So my apps go the same state when launched as http://domain.com/page/1 and as http://domain.com#page/1 When user navigates the app I use the hash urls and History object (as to not reload the pages). However sometimes it's

Re: Serializing Enum with Marker Interface

2010-11-01 Thread Mike
If I move the interface into the Enum's package, the GWT compiler appears happy. Opened an issue: http://code.google.com/p/google-web-toolkit/issues/detail?id=5520 Thanks! Mike On Oct 30, 2:59 am, Didier DURAND durand.did...@gmail.com wrote: Hi Mike, Probably an issue in the location

Serializing Enum with Marker Interface

2010-10-29 Thread Mike
! 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-tool...@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com. For more options

Re: Serializing Enum with Marker Interface

2010-10-29 Thread Mike
I tried changing the line to: public enum Color implements IsConfigurable, Serializable and I'm still getting the same compile error. Thanks! Mike On Oct 29, 3:57 pm, Patrick Tucker tucker...@gmail.com wrote: The enum itself can implement Serializable On Oct 29, 2:41 pm, Mike mikem2

An image directory shared across projects?

2010-10-21 Thread Mike Cantor
is to just make a new web project that does nothing but contain the help files. 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-tool...@googlegroups.com. To unsubscribe from

Re: downloading file from servlet

2010-10-20 Thread mike b
);         bis.close();         fis.close();         out.flush();         out.close();     } That all causes the selected file to be downloaded to the client browser in whatever way the browser chooses to handle downloads. On Oct 19, 8:49 pm, mike b mbaker.t...@gmail.com wrote: I have

Re: downloading file from servlet

2010-10-20 Thread mike b
! On Oct 20, 9:30 am, mike b mbaker.t...@gmail.com wrote: Thank you!  Thank you!  Thank you! That worked on the first try!!  Much Appreciated!!! On Oct 20, 12:28 am, Jim Douglas jdou...@basis.com wrote: This is what I'm doing.  YMMV and assorted disclaimers; it's quite likely that this can

downloading file from servlet

2010-10-19 Thread mike b
I have read all the other posts about downloading Excel files and how to do it w/ an IFRAME, with RequestBuilder, and Window.open(). However, none of them actually work. Luckily, I have a working servlet which executes and returns successfully with javascript. However, we'd like to do it all in

Using subtypes of AsyncCallBack

2010-10-06 Thread mike b
missed something. Thanks in advance, 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-tool...@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr

MVP - model question

2010-09-22 Thread mike b
= new EditContactPresenter(rpcService, eventBus, new EditContactView(), eo); } Thoughts? Ideas? Curses? Regards, 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-tool

command pattern, anon innerclass serialization exception

2010-09-21 Thread Mike Wyszinski
wondering why this results in a serialization exception(running it in debugger- com.google.gwt.dev.GWTShell) code snippets below I really like just needing to deal with the onSucceded() in my presenter code and leaving the onfailure,lookup invocation code in the action. This way i can

Re: command pattern, anon innerclass serialization exception

2010-09-21 Thread Mike Wyszinski
forgot one more interface for invoke the service public interface GwtActionService extends RemoteService { T extends Response T execute(ActionT action); } On Sep 21, 11:22 pm, Mike Wyszinski mike.wyszin...@gmail.com wrote: wondering why this results in a serialization exception(running

Re: enum serialization

2010-07-28 Thread Mike Heath
All enum extend java.lang.Enum which implements java.io.Serializable so explicitly implementing Serializable shouldn't make a difference. On Tue, Jul 27, 2010 at 9:15 AM, Prashant nextprash...@gmail.com wrote: try public enum Status *implements **java.io.**Serializable* { ACTIVE, INACTIVE,

Re: Client Session Timeout

2010-06-16 Thread Mike Jiang
Except for that, you can set a fixed timeout in your app's web.xml. For instance, session-config session-timeout15/session-timeout /session-config Here the time is in minute. Mike J. On Wed, Jun 16, 2010 at 9:44 AM, jhulford jhulf...@gmail.com wrote: The session interface has the method

Using GWT in an existing Java Project

2010-06-08 Thread Mike
already been a thread pertaining to this (I looked as best I could). 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-tool...@googlegroups.com. To unsubscribe from this group, send

Re: How can I prevent from reloading the page when the reload button on browser is clicked?

2010-06-01 Thread Mike Jiang
then pressing reload button. Welcome any comments. Thanks, Mike J. Based on the above points, I want to avoid reloading or refreshing and let the page simply stays as it is. It's a lazy person's scenario. It might be totally wrong. But I have not been convinced what's the fatal error in this method

Re: the dropdown menubar on the top of a frame cannot be collapsed

2010-06-01 Thread Mike J
Any body has an idea for this? or it's a GWT bug? On May 27, 12:21 pm, Mike J mikej1...@gmail.com wrote: I have a screen with a menu bar on the top of the screen. Below the menu bar there is a frame within a vertical panel. If clicking one menu with multiple menuitems and select one item

Re: How can I prevent from reloading the page when the reload button on browser is clicked?

2010-06-01 Thread Mike Jiang
Thanks, everybody. I have to do that way probably later. Mike J. On Tue, Jun 1, 2010 at 10:03 AM, Ranjan ranjan.n...@gmail.com wrote: Simply put, it is impossible to avoid Page reload if the User clicks the 'Refresh' button on the browser. There is no way to avoid it if the user wants

Re: How can I prevent from reloading the page when the reload button on browser is clicked?

2010-05-31 Thread Mike Jiang
Don't get it. Please show your good design in an understandable style. On Fri, May 28, 2010 at 4:49 PM, federico federico.mona...@gmail.comwrote: bad design. refresh is a feature and you should provide bokmarkable refresh-save pages. On 28 Mag, 20:42, Mike J mikej1...@gmail.com wrote

Re: How to center a VerticalPanel on page with UiBinder

2010-05-28 Thread Mike
Mike On May 28, 7:07 am, Mark rausch.pi...@gmail.com wrote: I finally found out how to do this: g:VerticalPanel ui:field=vertialPanel styleName='{style.centerStyle}' Hopefully this will help anybody else. On 27 Mai, 13:27, Mark rausch.pi...@gmail.com wrote: Hello, I am new to gwt and I

How can I prevent from reloading the page when the reload button on browser is clicked?

2010-05-28 Thread Mike J
) { //prevent browser sending the reload request to the web browser } }); But I don't know how I can stop the browser from sending the reload request to the web server. Thanks for any help, Mike J. -- You received this message because you are subscribed to the Google Groups

the dropdown menubar on the top of a frame cannot be collapsed

2010-05-27 Thread Mike J
, a FlexTable. How can I get the drop down collapse back in that case? Thanks, Mike J. -- 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-tool...@googlegroups.com. To unsubscribe from this group, send

Re: I need help getting Objectify to work with GWT

2010-05-26 Thread Mike
on the build path -- and that will sort you out. Cheers Mike On May 25, 7:55 pm, Michael mrher...@gmail.com wrote: I am using GWT +GAE for my current project.  I am doing all of the coding in eclipse.  I want to add objectify to communicate with the datastore and to use the POJO that I use

Re: gwt-html5-media

2010-05-26 Thread Mike Jiang
It's a very good try. I was wondering how I can get the whole thing as a project from within the Eclipse without downloading them piece by piece? Thanks, Mike J. On Wed, May 26, 2010 at 4:16 PM, Mark Renouf mark.ren...@gmail.com wrote: I've been sitting on a couple widgets I developed

Re: GWT RPC and GoDaddy

2010-05-23 Thread Mike Apolis
On 22 Mai, 18:44, Mike Apolis michaelgb@gmail.com wrote: Hi, I've deployed the sample Stock Watcher app to my GoDaddy Hosting site, and I get the error below.  I've tried compiling the Project in Eclipse with JRE 1.5 because my Host is using jre 1.5.  I think the issue is the gwt

Re: ScrollPanel not displaying contents in nested DockLayoutPanels

2010-05-22 Thread Mike
LayoutPanel instead and move the responsibility for enclosing content into an appropriate Panel onto the child views. Mike On May 21, 4:22 pm, Savio Grossi savio.gro...@sambatech.com.br wrote: Hi, the problem is that ScrollPanel apparently is not propagating the layout data, according

GWT RPC and GoDaddy

2010-05-22 Thread Mike Apolis
Hi, I've deployed the sample Stock Watcher app to my GoDaddy Hosting site, and I get the error below. I've tried compiling the Project in Eclipse with JRE 1.5 because my Host is using jre 1.5. I think the issue is the gwt-servlet.jar is not compatible with jre 1.5. Can anyone confirm this.

Client side dynamic configuration/properties

2010-05-20 Thread Mike Noordermeer
it with the necessary data), and which is then available through some singleton/static variable construct. Disadvantage is of course that singletons are sometimes discouraged, and that it's more work to code than an out of the box solution. Any thoughts on this? -- Regards, Mike Noordermeer m...@normi.net

How can I clone an object in GWT?

2010-05-20 Thread Mike Jiang
() available for GWT, how can I do that? Thanks, Mike J. -- 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-tool...@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit

Re: How can I clone an object in GWT?

2010-05-20 Thread Mike Jiang
(or are about to capture). Be sure to add a flag or something so your change handler does not do this unnecessary restore when you are manually adding history items. On May 20, 7:33 am, Mike Jiang mikej1...@gmail.com wrote: I tried to use History class to manage the handling of the back/forward

RequestBuilder.POST to PHP works in IE, FireFox, but not Chrome Response Status = 0

2010-05-20 Thread Mike Apolis
When sending the code below, everything works great in FF, IE, but the response that comes back in chrome has a status code of 0, and contains no data. At a minimum my php script would response back FALSE. Code: String requestData = URL.encode(clientUsername=+authentication.getUsername()

Re: RequestBuilder.POST to PHP works in IE, FireFox, but not Chrome Response Status = 0

2010-05-20 Thread Mike Apolis
Krishnan sripathi.krish...@gmail.com wrote: Are you posting to a different port on the same host? AFAIK, IE allows you to post to the same port, but other browsers consider it a violation of same origin policy. --Sri On 20 May 2010 20:32, Mike Apolis michaelgb@gmail.com wrote: When

Handling Browser Events - F5

2010-05-17 Thread Mike S. Matsumoto
. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- Mike Shigueru Matsumoto -- 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-tool

Re: ScrollPanel not displaying contents in nested DockLayoutPanels

2010-05-14 Thread Mike
with Google Update plugin 1.2.183.23. Also uploaded onto App Engine and got the same result w/o dev plugin. Thanks, Mike On Apr 16, 4:51 am, rmmcgr richard.mcgr...@gmail.com wrote: Hi, I have problem with a ScrollPanel not displaying its contents that is buried a few layers deep in some layout panels

Re: error 404: could not find the greetServlet when putting the war file not in the tomcat's webapps folder

2010-05-13 Thread Mike J
body tell me what the problem is? Thanks, Mike J. On May 6, 5:24 pm, Tiago A. Silva tiago...@gmail.com wrote: Correct is    servlet-mapping    servlet-namegreetServlet/servlet-name    url-pattern/myproject/greet/url-pattern  /servlet-mapping     to servlet-mapping    servlet

Re: error 404: could not find the greetServlet when putting the war file not in the tomcat's webapps folder

2010-05-13 Thread Mike Jiang
should be http://localhost: 8080/f1/myproject/greet On Thu, May 13, 2010 at 5:15 PM, Mike J mikej1...@gmail.com wrote: Thanks. I kept the servlet mapping in web.xml like this, servlet-mapping servlet-namegreetServlet/servlet-name url-pattern/myproject/greet/url-pattern /servlet

Re: Looking for a good MVP framework

2010-05-13 Thread Mike
you mentioned that I didn't look at closely were gwt- remote-action and handlebars (though I did have a quick look at handlebars). Cheers 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

Re: XML binding/mapping and GWT-RPC

2010-05-13 Thread Mike
Why do you need XML, and not just POJO ? -- 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-tool...@googlegroups.com. To unsubscribe from this group, send email to

Re: Generator works on hosted mode but not on web mode

2010-05-06 Thread Mike S. Matsumoto
forward now. If anyone still have tips about how this name cache works I will appreciate any help. On Wed, May 5, 2010 at 2:09 PM, Mike S. Matsumoto mikematsum...@gmail.comwrote: I just finish used the option: -gen myGenClasses. My MyServiceFactoryGenerated looks fine. Should I merge

Re: Generator works on hosted mode but not on web mode

2010-05-06 Thread Mike S. Matsumoto
= getSourceWriter(generatedName, classType, context, logger); if(src != null) { // generate the code } catch (NotFoundException e) { e.printStackTrace(); } return typeName + Generated; } On Thu, May 6, 2010 at 10:06 AM, Mike S. Matsumoto

error 404: could not find the greetServlet when putting the war file not in the tomcat's webapps folder

2010-05-06 Thread Mike J
-mapping in GWT.XML, there is nothing related to the servlet. Thanks in advance, Mike J -- 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-tool...@googlegroups.com. To unsubscribe from

Re: new GWT MVP article (part 2)

2010-05-05 Thread Mike
was providing (the concepts were all very clear, but the details didn't match the libraries). If the code matched all of the libraries at a known state, I think it would be more useful. Cheers Mike On May 4, 1:09 am, Manuel Carrasco Moñino man...@apache.org wrote: I'm using the latest code of gwt

Re: Generator works on hosted mode but not on web mode

2010-05-05 Thread Mike S. Matsumoto
, Mike mikematsum...@gmail.com wrote: Hi guys, I have the Generator bellow working perfectly on hosted mode inside eclipse but now I'm trying generate one .war to deploy on tomcat. The tomcat start normally without any error on log messages but my Generator does nothing

Generator works on hosted mode but not on web mode

2010-05-04 Thread Mike
Hi guys, I have the Generator bellow working perfectly on hosted mode inside eclipse but now I'm trying generate one .war to deploy on tomcat. The tomcat start normally without any error on log messages but my Generator does nothing. generate-with

Newbie question: How does one write a Unit test for MyClass extends RemoteServiceServlet ???

2010-05-04 Thread Mike
, etc). Cheers 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-tool...@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com

Re: new GWT MVP article (part 2)

2010-05-03 Thread Mike
: The version of gwt-presenter that I downloaded from the Google Code site doesn't appear to include this package: net.customware.gwt.presenter.client.widget Any ideas? Cheers Mike -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

Re: Best CSS practice for complex GWT Widgets using UiBinder

2010-04-28 Thread Mike
On Apr 27, 6:15 pm, Thomas Broyer t.bro...@gmail.com wrote: Thanks for the reply. It does not mean that one could refer to a CssResource *outside* of the ui:style scope though -- correct? No. The class name you use in your stylesheet won't be changed, so it will apply to the whole

Re: UiBinder question about uixml directory

2010-04-27 Thread Mike
Sure it is. You can put them into whatever package you want. The trick is, that the compiler needs to know to process whatever package they end up in. In order to tell the GWT compiler to process that folder, edit your module.gwt.xml file. At the end, you should find some lines that look like

Re: Best CSS practice for complex GWT Widgets using UiBinder

2010-04-27 Thread Mike
I have a similar question: I was quite intrigued to see the @external annotation here -- anyone point at more documentation? All I found was this: http://code.google.com/p/google-web-toolkit/wiki/CssResource#External_and_legacy_scopes From that documentation, it seems to imply only that the

Re: GWT not using CssResources??

2010-04-27 Thread Mike
Ed, What are you trying to do? Do you have some code samples? Have you had a read through: http://code.google.com/webtoolkit/doc/latest/DevGuideClientBundle.html#CssResource Cheers On Apr 27, 3:43 am, Ed post2edb...@hotmail.com wrote: Why is GWT not using CssResource to set styles on his

Re: TabBar

2010-04-26 Thread Mike
The problem with that suggestion is -- TabPanel has already been deprecated. The new widget that GWT provides and is suggested for that situation is - TabLayoutPanel. The suggestion to read the code for TabPanel is a great idea, b/c IMHO: TabPanel is a much better widget than TabLayoutPanel.

Re: g:TabPanel is deprecated. Use the g:TabLayoutPanel instead.

2010-04-26 Thread Mike
effect as DecoratedTabPanel now ? Is the idea that they want all of us to build our own custom mash-ups of TabBar and DeckPanel ??? Cheers 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

Re: Tab Bar

2010-04-26 Thread Mike
What are you trying to do? Have you seen (deprecated) TabPanel and TabLayoutPanel? -- 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-tool...@googlegroups.com. To unsubscribe from this group,

Re: TabBar

2010-04-26 Thread Mike
TabPanel is not deprecated. However, if you are using tabs inside a LayoutPanel type of layout, vs the traditional panels, and/or using Standards mode, you need to use TabLayoutPanel instead. Sorry, I was writing a lot of code over the weekend, and swore that I'd gotten compile error using

[gwt-contrib] Re: Removes unnecessary uses of a JProgram instance where it's really not needed. (issue295802)

2010-04-02 Thread mike . aizatsky
LGTM http://gwt-code-reviews.appspot.com/295802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors To unsubscribe, reply using remove me as the subject.

[gwt-contrib] gflow nested switch statements

2010-03-11 Thread mike . aizatsky
Reviewers: Lex, Description: Fixing gflow nested switch CFG generation Added couple of tostrings to aid in debugging. Please review this at http://gwt-code-reviews.appspot.com/180801 Affected files: dev/core/src/com/google/gwt/dev/jjs/impl/gflow/AnalysisSolver.java

Re: Working Example of TabLayoutPanel with UIBinder?

2010-03-05 Thread Mike
I can't get it to work either... The headers show up nicely but the content stays empty. Does anyone have a pointer to a working example? On Mar 3, 1:29 pm, Paul Stockley pstockl...@gmail.com wrote: In your example just do this:        g:TabLayoutPanel barUnit=PX barHeight=20         g:tab  

Re: Working Example of TabLayoutPanel with UIBinder?

2010-03-05 Thread Mike
Solution: I was using RootPanel instead of RootLayoutPanel. Changing that fixed it. Thanks to phil. http://www.filsa.net/2010/01/21/gwt-notes-tablayoutpanel/ Bye, Mike On Mar 5, 11:38 am, Mike mcwe...@gmail.com wrote: I can't get it to work either... The headers show up nicely but the content

Re: How to correct IE font size problem?

2010-03-03 Thread Mike
/ meyerweb.com/eric/tools/css/reset/ Hope that helps. Bye, Mike On Mar 3, 12:35 pm, lembas keremo...@gmail.com wrote: Font size is larger in IE than the Firefox and Chrome. All labels, buttons, flextables, grids, tabs... Everything is like ~20% larger in IE. My IE version is 8. I have tried all

[gwt-contrib] Re: Gflow framework passes all smoke tests

2010-03-02 Thread mike . aizatsky
http://gwt-code-reviews.appspot.com/153807/diff/1002/82 File dev/core/src/com/google/gwt/dev/jjs/impl/gflow/cfg/CfgBuilder.java (right): http://gwt-code-reviews.appspot.com/153807/diff/1002/82#newcode736 Line 736: } else if (typeOracle.canTriviallyCast(catchType, exceptionType)) { According to

[gwt-contrib] Fixing StackOverflow

2010-03-02 Thread mike . aizatsky
Reviewers: Lex, Message: Lex, This adds some debugging facilities and fixes recursion problems in copy propagation analysis. Please take a look. Please review this at http://gwt-code-reviews.appspot.com/154811 Affected files: M

JS AST interchange

2010-02-26 Thread Mike Samuel
, and Dojo shrinksafe seems to use the same but doesn't build a parse tree. cheers, 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-tool...@googlegroups.com. To unsubscribe from this group

Re: [closure-compiler-discuss] JS AST interchange

2010-02-26 Thread Mike Samuel
2010/2/26 Nick Santos nicksan...@google.com: On Fri, Feb 26, 2010 at 4:33 PM, Mike Samuel mikesam...@gmail.com wrote: This format can store meta-information (e.g., source location info) that is not part of the parse tree in a way that can round trip well and that would get lost if javascript

Re: [closure-compiler-discuss] JS AST interchange

2010-02-26 Thread Mike Samuel
that this node has a given closure type We could store such info in the annotations and/or inferences properties of nodes. Thanks, Joey On Fri, Feb 26, 2010 at 4:33 PM, Mike Samuel mikesam...@gmail.com wrote: I want to do do some integration between my project, Caja, and others like GWT

[gwt-contrib] Gflow framework passes all smoke tests

2010-02-26 Thread mike . aizatsky
Reviewers: Lex, Message: Lex, these changes make gflow framework to pass all smoke tests. Please take a look. Please review this at http://gwt-code-reviews.appspot.com/153807 Affected files: M dev/core/src/com/google/gwt/dev/jjs/ast/JIfStatement.java M

[gwt-contrib] Re: Gflow framework passes all smoke tests

2010-02-26 Thread mike . aizatsky
Lex, All done. All tests pass. PTAL. http://gwt-code-reviews.appspot.com/153807/diff/1/9 File dev/core/src/com/google/gwt/dev/jjs/ast/JReferenceType.java (right): http://gwt-code-reviews.appspot.com/153807/diff/1/9#newcode28 Line 28: public static JType dereference(JType type) { On 2010/02/26

Re: Debug Gadget GWT 2.0

2010-02-23 Thread Mike
Eric, That would be GREAT. I'm having difficulty with the gadgets API as well. Bye, Mike some more about it.  I hope to have some time to bring the gadgets API up to speed soon. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

[gwt-contrib] SameParameterValueOptimizer should ignore methods called from native code.

2010-02-12 Thread mike . aizatsky
Reviewers: Lex, Message: Lex, Please review. Description: SameParameterValueOptimizer should ignore methods called from native code. Please review this at http://gwt-code-reviews.appspot.com/141812 Affected files: M

[gwt-contrib] Unreachable analysis/optimization.

2010-01-19 Thread mike . aizatsky
Reviewers: Lex, Message: Requesting review Description: Unreachable analysis/optimization. Determines CFG nodes which are not reachable, and deletes them from source tree if possible. Please review this at http://gwt-code-reviews.appspot.com/130814 Affected files: A

[gwt-contrib] Copy propagation analysis/optimization.

2010-01-19 Thread mike . aizatsky
Reviewers: Lex, Message: Requesting review. Description: Copy propagation analysis/optimization. Detects when variable is the copy of another and uses older var instead. Please review this at http://gwt-code-reviews.appspot.com/132814 Affected files: A

[gwt-contrib] Analysis framework update driven by compile time optimization.

2010-01-19 Thread mike . aizatsky
Reviewers: Lex, Message: Requesting review. Description: Analysis framework update driven by compile time optimization. Please review this at http://gwt-code-reviews.appspot.com/132813 Affected files: M dev/core/src/com/google/gwt/dev/jjs/impl/gflow/Analysis.java M

Re: deRPC issues

2010-01-14 Thread Mike Noordermeer
I don't have one atm, will try to produce one... On Wed, Jan 13, 2010 at 9:28 PM, Chris Ramsdale cramsd...@google.comwrote: @Mike (either one), do you have a small test project that reproduces these issues? If so, would you mind sending it to me? Thanks, Chris On Tue, Jan 5, 2010 at 2:12

Re: deRPC issues

2010-01-14 Thread Mike Noordermeer
On Wed, Jan 13, 2010 at 9:28 PM, Chris Ramsdale cramsd...@google.com mailto:cramsd...@google.com wrote: @Mike (either one), do you have a small test project that reproduces these issues? If so, would you mind sending it to me? Testcase for the second issue is at http

Multiple RPC requests, onSuccess() order/concurrency

2010-01-12 Thread Mike Noordermeer
it was single threaded, so...) I could save the request and cancel the old one when a new request is done... Thanks in advance for any replies :-) -- Mike Noordermeer m...@normi.net -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

Re: dealing with host page generated by server-side script (in development)

2010-01-05 Thread mike
It's working perfectly for me now. The problem was I was trying to adding the gwt.codesvr parameter to the script tag for app.nocache.js rather than adding it to the page url. Thank you Jeff. On Dec 26 2009, 2:15 pm, mike mikebannis...@gmail.com wrote: I didn't realize that would be enough

<    1   2   3   4   >