Re: Dealing with javascript functions as parameters and properties

2017-08-16 Thread Bill Tang
-7, Jens wrote: > > > > Am Mittwoch, 16. August 2017 09:24:49 UTC+2 schrieb Bill Tang: >> >> I am working on a Jsinterop wrapper for the GSAP javascript library, and >> I am quite new to GWT, so I have come across a few problems I am not sure >> how to solve.

Dealing with javascript functions as parameters and properties

2017-08-16 Thread Bill Tang
I am working on a Jsinterop wrapper for the GSAP javascript library, and I am quite new to GWT, so I have come across a few problems I am not sure how to solve. My main issue revolves around trying to wrap javascript functions into Java objects. For example, if I have a native javascript

[gwt-contrib] Extensible Elemental

2015-07-13 Thread Bill Thompson
The ability to wrap our own code around the WebIDL bindings would be really handy for us. I just wanted to raise the idea of this being seperated out from gwt as part of the gwt nextgen work. For example, it would be great if we could submit a delegate API that's called by the Elemental WebIDL

EntityProxy getId is always null for Entity with Composite Key

2013-07-25 Thread Bill Salvucci
My Entity uses a @EmbeddedId for its id. I can see that the getId on the entity in the server is returning an instance of the pk class, but it ends up being null in the corresponding entity proxy instance on the client. request.findAllAccounts() .fire(new ReceiverListAccountProxy() {

Re: Eclipse not recognizing GWT on auto import

2013-02-19 Thread Bill Doss
Other imports work, even the lib-gwt-svg from Vectomatic that I added. I copied one of the samples from the gwt directory (Hello) and tried to import it via create project from existing ant build but that didn't work. This is not a show stopper. But it is annoying. :( On Tuesday, February

mixing mvp paradigms

2013-02-18 Thread Bill Salvucci
I recently refactored my application to mvp activities and places. I have an application level menu bar; when an menu is clicked, an activity for that menu item's place is started and the content area is set accordingly. Makes perfect sense to me. But I'm now thinking about the menu bar

Eclipse not recognizing GWT on auto import

2013-02-18 Thread Bill Doss
. Thanks a bunch, Bill -- 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

Why does GWT echo PHP script file instead of executing it?

2013-02-12 Thread Bill Doss
in the production system, I'd still like to debug within Eclipse. Does the built in server, Jetty, that comes with Eclipse and the GWT plugin not work with PHP? Thanks so much in advance, Bill -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group

Re: GWT + Hibernate + MySQL inside Eclipse

2012-06-01 Thread Bill Compton
See this thread.http://stackoverflow.com/questions/10712365/cant-configure-mysql-datasource-in-gwt-hibernate-mysql-project On Sunday, May 20, 2012 5:42:49 PM UTC-6, Bill Compton wrote: Our Hibernate setup works fine in non-GWT projects. I'm using Eclipse Indigo, Google Suite Plugin 2.5

RequestFactory - how to prevent batched requests after constraint violation

2012-05-30 Thread Bill T
I am getting an IllegalArgumentException, Attempting to edit an EntityProxy previously edited by another RequestContext. This is a result of getting constraint violations and automatically batching different Request Factory requests within the RequestContext. I am using GWT 2.4. My

GWT + Hibernate + MySQL inside Eclipse

2012-05-23 Thread Bill Compton
Our Hibernate setup works fine in non-GWT projects. I'm using Eclipse Indigo, Google Suite Plugin 2.5, Google GWT Designer 2.4.2. The short-short version is that the MysqlConnectionPoolDataSource class from jetty-env.xml is evidently not getting instantiated, causing the resource reference

Re: GWT DataGrid Widget unpredictable row height issue...

2012-03-07 Thread Bill M
. Thanks, Bill M. On Mar 2, 5:27 pm, Bill M blinte...@aol.com wrote: Hi Vinayak, I tried setting using the same data for eachrow, yet I still got some rows appearing with larger heights. And eachrowwas loaded with the same exact data. I'm try loading with field/column of therowwith and see what

How to hide a column in the GWT DataGrid Widget

2012-03-07 Thread Bill M
. Is there another way to hide a column? Or, do I need to implement my own data structure to handle this? Thanks, Bill M -- 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

Re: GWT DataGrid Widget unpredictable row height issue...

2012-03-02 Thread Bill M
Hi Vinayak, I tried setting using the same data for each row, yet I still got some rows appearing with larger heights. And each row was loaded with the same exact data. I'm try loading with field/column of the row with and see what that does. Thanks, Bill M. On Mar 2, 5:14 am, vinayak

Re: How do I call getServletContext from within GWT?

2012-02-27 Thread Bill M
Thanks! On Feb 22, 7:49 pm, Daniel Mauricio Patino León ceo.lion@gmail.com wrote: getServletContext().getRealPath(/) Since RemoteServiceServlet is a subclass of HttpServlet Will give you the path. This on server side ofcourse. 2012/2/22 Bill M blinte...@aol.com Hi all, Can

GWT DataGrid Widget unpredictable row height issue...

2012-02-27 Thread Bill M
height out of GWT 2.4/ DataGrid widget? Are there workarounds? I saw some others noting issues of rowHeight from the CellTable widget. Are there issue's with this widget? Or would an issue like this have to be originating from my application? Appreciate any insight! Thanks, Bill M. -- You

How do I call getServletContext from within GWT?

2012-02-22 Thread Bill M
Hi all, Can someone explain to me how to call getServletContext() from within GWT? I need to obtain the servlet's real path so I can open a file. Could someone shoot me some sample code on how to do this? Thanks so much. PS - Are there any GWT books out there that are uptodate on the current

How to force scroll of DataGrid to top on reload

2012-01-26 Thread Bill M
Hello, I would like to know if anyone knows how to set the scroll position of the DataGrid widget to the top, following a reload? I don't see any method that allow you to do this. Does anyone know how? Thanks, Bill -- You received this message because you are subscribed to the Google Groups

How to set column of DataGrid (i.e. a TextColumn) to not be selectable?

2012-01-26 Thread Bill M
Hello, I have a DataGrid table that is composed of multiple TextColumns. When you click on the TextColumn, the column acts like it could be edited, with the column appearing like a text entry field. Is there a way to stop this behavior, so it only appears like a label? Thanks, Bill -- You

How to control active/inactive state of a button in a ButtonColumn of a DataGrid, upon load of row of data into the table?

2012-01-11 Thread Bill M
this can be done? Thanks, Bill M -- 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: DataGrid Object not displaying more than 50 items...

2012-01-10 Thread Bill M
Hi Kris, I looked at the example. But, the example is loading static data and it's using pagination. However, I am loading the data as a result of a DB query in a for loop (all at once), and I'm using a scrollbar to view the data (not pagination). Any other ideas? Thanks, Bill On Jan 10, 5

Re: DataGrid Object not displaying more than 50 items...

2012-01-10 Thread Bill M
loading my query results so I could eventually see them? Thanks, Bill On Jan 10, 5:27 am, kretel krzysztof.re...@gmail.com wrote: Do you use the pager with your DataGrid? Also check if you can see elements being added to the DOM (firebug-it). I would have a look at showcase how it works

How to place a pushButton and a clickable Image into a row of a DataGrid?

2012-01-10 Thread Bill M
how to add a clickable icon to a row of a DataGrid as well ? Thanks, Bill -- 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

DataGrid Object not displaying more than 50 items...

2012-01-09 Thread Bill M
more than 50 items, or at least it is not displaying more than 50 items. Has anyone else experience anything like this? Is there a instruction I am forgetting? Thanks, Bill -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

Getting the new DataGrid object to resize...

2012-01-07 Thread Bill M
Hi all, Does anyone know if it is possible to get the new DataGrid object to resize, if you increase the size of the browser by dragging a corner of it? The DataGrid object has a setRows method. Does this imply that it cannot resize, once it has been displayed? Would appreciate any info on

Re: Deleting the contents of a GWT DataGrid Widget

2012-01-07 Thread Bill M
Thanks. I actually got figured that one out yesterday! Hey, have you used the DataGrid object? Would you know if it is possible for this widget to grow in size if you drag the browser to make it bigger? (i.e. User wants to see if more rows in the display) Thanks! Bill On Jan 6, 4:08 am

Deleting the contents of a GWT DataGrid Widget

2012-01-05 Thread Bill M
Hi, Would like to know if there is a direct way to delete ALL the rows of the new DataGrid Widget -part of release GWT 2.4, or is the only way to do it is by maintaining a handle to some Collection you may have previously loaded into the Table, and then doing something like this to delete the

Where is the DataGrid Widget?

2011-12-17 Thread Bill M
have posted questions about it, so it must be present somewhere... :) Could someone tell me where this widget is? Thanks! Bill -- 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

CSS1Compat Error

2011-10-27 Thread Bill Morrison
Greetings, In my GWT application I have set it to standards mode (!doctype html) in the main html file. However, at run time I keep receiving this message : 12:20:17.905 [INFO] [marabou] Your *.gwt.xml module configuration prohibits the use of the current doucment rendering mode

Setting A Bookmark

2011-09-13 Thread Bill Morrison
This is a simple question, but one I can't seem to find the answer to (all searches return how-to's on implementing History) I'm looking for the code needed to have my GWT application set a bookmark in the users browser. Thanks in advance! Bill -- You received this message because you

Re: Add Google Maps API on GWT-ext

2011-05-13 Thread Bill
else reading this can confirm or deny that this was necessary. Hope this helps. Bill On May 13, 2:17 am, Henry henryubu...@gmail.com wrote: Hi: I want to create a project using the Google Maps API with GWT-ext on Eclipse. I'm a newbie using GWT-ext, does anyone knows about a tutotial o have

Style in the Stockwatcher example

2011-05-12 Thread Bill
page, you'll use the module XML file./i Please let me know if I'm missing something. Thanks, Bill -- 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

Synchronizing editor data

2011-04-29 Thread Bill T
I am using GWT 2.2.0 with RequestFactory and the Editor framework. What is the recommended way to keep to 2 editors in sync with a shared proxy object attribute (the same object attribute is displayed in 2 editors)? I tried the following but ran into a few issues: Using

Non admin install for developer plugin on IE 8

2011-04-18 Thread Bill Reestman
Is there any way to install the GWT developer plugin on IE 8 without having admin rights. Is there perhaps a non admin install for the plugin? Thanks for any help. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

stacking multiple panels in z-order?

2011-03-03 Thread Bill Janssen
drawn under that HTML widget, and a transparent Canvas above the HTML widget to add a drawing layer. This is sort of like a DeckPanel, but without the animation and with the ability to show multiple widgets simultaneously. Anyone know of such a GWT widget? Bill -- You received this message because

FormPanel.SubmitCompleteHandler called even on error return?

2011-02-10 Thread Bill Janssen
I find that even when my server sends back 400 and 401 error responses in response to a FormPanel submit, the SubmitCompleteHandler of the FormPanel is still being called. Is there any way in a SubmitCompleteHandler to see if the submit actually succeeded or not? This is with GWT 2.1.1. -- You

Re: Sample Application RPC Problems with Tomcat

2011-01-20 Thread Bill Morrison
automatically? On Jan 19, 11:32 am, Bill Morrison hipgno...@gmail.com wrote: Greetings All, I have created the standard Web Application Starter Project (creatively named test), created the .war file and uploaded it to my Tomcat server. The war was unpackaged, and the client side

Re: Frameworks

2010-08-19 Thread bill braasch
the new BSD license. Bill Braasch b...@itemscript.org -- 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

Service Location on Server Side

2010-08-11 Thread Bill
Hello, This feels like a silly question. Please forgive if so. For my simple proof-of-concept application, I have two RPC services, both of which may be accessible by the client. However, for one of my use cases, I need for one of the services to access the other service. Is there any

Re: Efficient GWT Client-Server Communication methodology

2010-06-11 Thread bill braasch
Check out the Itemscript libraries. http://code.google.com/p/itemscript/ Itemscript includes a JSON RPC with cross platform Java / GWT libraries. There's also an in memory database you might find useful for managing the client side. Bill -- You received this message because you are subscribed

Itemscript: a rich JSON API for Java and GWT

2010-03-08 Thread bill braasch
feedback or suggestions on Itemscript. Bill Braasch -- 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: Not able to use External Jar file for DB connection

2010-02-10 Thread Bill Michell
. 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, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. -- Bill Michell billmich

Re: XMLParser cannot parse the £ symbol

2009-11-10 Thread Bill Michell
systems support it yet... Thanks! -- Bill Michell billmich...@gmail.com --~--~-~--~~~---~--~~ 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: List Serialization Error

2009-10-02 Thread Bill Michell
; } } -- But it occour: -- Car Name: Ferrari Car Type: Sport java.lang.NullPointerException at br.com.oxylabtech.server.dbService.save (ServiceImpl.java:19) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -- Why? Thankx! -- Bill Michell billmich

multiselect datasource binding

2009-08-20 Thread Bill Salvucci
My xml data looks something like: student id43/id nameBill Salvucci/name courses course id1/id namebiology/name? /course course id5/id namecalculus/name? /course /courses /student StudentDataSource: DataSourceField idField = new

MenuBar Submenu Remove Border

2009-04-06 Thread Bill Davis
Does anyone know of a way to completely remove the border on a popup submenu from a MenuBar? I've played around with the styles for a couple of hours, but I've only been able to change the style of the shadow for some reason. Thanks, Bill Davis

Re: MenuBar Submenu Remove Border

2009-04-06 Thread Bill Davis
Thanks, that seems pretty obvious now that I'm at home :) Unfortunately at work, I don't have any tools like that and we're not allowed to download software without going thru a lot of red tape, so sometimes I don't think about that method. Thanks, Bill

Re: Can't download GWT even older versions

2009-03-17 Thread Bill
Sumal and Alex, thanks for your help. This does appear to have been a FF/connection issue -- I was able to download successfully when I got back to my usual, reliable network. Thanks, -Bill On Mar 13, 12:43 am, alex.d alex.dukhov...@googlemail.com wrote: That kind of error with FF occures

Re: Can't download GWT even older versions

2009-03-12 Thread Bill
normally. I've tried this on two separate wireless networks with the same result. Any idea what the problem might be? Thanks, Bill On Mar 11, 9:55 am, Sumal Wijewardhana suma...@gmail.com wrote: Hi Sumit, Downloading is starting and going till 5MB, after that its get stop. This was happened

Re: Google, how do I use your toolkit and make a site that is also searchable by your webcrawler?

2008-10-01 Thread bill robertson
'I think either you've misunderstood hijax, you've misunderstood GWT, or you're being belligerent.' Probably all three to some degree. I guess I look at it this way, if I can write the app in Java, and have GWT translate it to a form that will run in the browser, then I would like to do that.