Does the JS code from GWT run fine on Explorer 8 ? Or stick with Explorer 7?

2009-06-05 Thread sssmack
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-Toolkit@googlegroups.com To unsubscribe from this group, send email to

Re: Composite question

2009-05-22 Thread sssmack
How about this: Create a new class that contains Composite and extends nothing. Implement the methods using those from Composite needed to make the new class work with GWT...and implement your own. In other words: class MyRestrictedWidget { private Composite composite = new Composite() {

Re: database backend best practice

2009-05-04 Thread sssmack
Is the application Trackvia? ;-) On May 2, 7:43 am, Chris chris.b...@gmail.com wrote: I'm about to start a new application using GWT 1.6. I have a lot of programming experience, but very little with java. In my application I want to load a dozen or so different record types from a mysql

Re: A native GWT chart library?

2009-04-22 Thread sssmack
Pierre, Maybe use Walter's vector library here: http://www.walterzorn.com/jsgraphics/jsgraphics_e.htm#download Granted it is lower level - you'd probably have to build on it to make graph classes - there may be some already made for it. On Apr 22, 2:35 am, Rvanlaak rvanl...@gmail.com wrote:

Re: json date

2009-02-26 Thread sssmack
The answer depends on whether you want the server to format the date or the client to. Send it as a JSONstring for the 1st case and as a JSONNumber for the latter. Send it as JSONNumber if you want the client (GWT) to be able to render the date as its local time. On Feb 25, 3:56 am, Lothar

How to get the Widget when only the Element is known?

2009-02-23 Thread sssmack
I can't find how to do this and am hoping that it is easy to do and that I am just not seeing the way. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

How is the width of a HTMLtable column or cell gotten without referring to an object contained therein?

2009-01-09 Thread sssmack
Thank you. --~--~-~--~~~---~--~~ 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

How to get the width of a cell in a HTML table/Grid

2009-01-08 Thread sssmack
The width of a widget contained it a cell can be gotten, but how is the width of a cell or column gotten? Let's say all cells of a Grid contain text. How is the width of a column or cell gotten? Thanks --~--~-~--~~~---~--~~ You received this message because you

Re: What gwt method and/or event indicates that the object has been rendered?

2009-01-08 Thread sssmack
Thank you. Makes sense. On Dec 11 2008, 8:41 am, Jason Essington jason.essing...@gmail.com wrote: Thomas is correct here. onAttach() performs some very important   functions related to widget behavior, so if you are not careful (to   call super.onAttach()) then you would end up with broken

How to get GWT shell/tomcat to access perl cgi

2008-12-11 Thread sssmack
I imagine the cgi should be put into the www area/directory but I don't know how to set this up. Please give me a link that will help me or try and describe how to do this. Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

What gwt method and/or event indicates that the object has been rendered?

2008-12-10 Thread sssmack
...and upon that for example getOffsetWidth() will return the rendered amount? 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

Re: setting Label widgets in each cell of 1000row x 17col grid is too slow..

2008-12-01 Thread sssmack
I'm going to try the BulkTableRenderer today. I want to be able to catch button right click events on the row and don't see text being able to catch those and therefore made labels for each cell. I did exchange Label for setText to verify speed change but building the grid was still slow .