> Today's Topic Summary
>
> Group: http://groups.google.com/group/google-web-toolkit/topics
>
> DataGrid Object not displaying more than 50 items... [7 Updates]
> DatePicker : clear all styles [1 Update]
> GWT client static variable versus Server side Session object [1 Update]
> AsyncProxy and ActivityMapper [1 Update]
> using in-memory data-structures in GWT [2 Updates]
> GWT 2.4.0 - Run Validation Tool error [3 Updates]
> GWT CellTable getColumnWidth problem when inserting a Column object [3
> Updates]
> loading an image [2 Updates]
> Best VPN for Linux based GWT development [2 Updates]
> Android GWT apk - Cache.html error [1 Update]
> How to use doPost method in Formpanel submit button. How to map that servlet
> in web.xml. [3 Updates]
> ui:style example doesn't work [1 Update]
> Efficient code splitting in a large application? [1 Update]
> SelectionCell not receiving focus when dispatching native click event [1
> Update]
> Need advice about a simple PHP and GWT SSO approach. [3 Updates]
> com.google.gwt.user.client.rpc.StatusCodeException: 12002 exception in IE8
> (not Chrome or FF) [1 Update]
> GWT communication with REST [2 Updates]
> GWT Developer Plugin for Firefox 9 [2 Updates]
> Error - files not found [1 Update]
> Basic error with package organization [1 Update]
> CssResource obfuscation map [1 Update]
> Abridged summary of google-web-toolkit@googlegroups.com - 26 Messages in 13
> Topics [1 Update]
>
> DataGrid Object not displaying more than 50 items...
>
> Bill M <blintegra@aol.com> Jan 09 11:15PM -0800
>
> Hi All,
>
> I am trying to load the DataGrid with the results of a query. I have
> a DataProvider object connected to the DataGrid table,
> and I use a for loop to do a list.add() of a object I created ...more
>
> kretel <krzysztof.retel@gmail.com> Jan 10 02:27AM -0800
>
> 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 on the example:
> ...more
>
> Bill M <blintegra@aol.com> Jan 10 03:44AM -0800
>
> 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 ...more
>
> Bill M <blintegra@aol.com> Jan 10 04:16AM -0800
>
> Hi Kris,
>
> I was looking more at the sample program you suggested
> (ContactDatabase.java), and I saw this method:
>
>
> /**
> * Add a display to the database. The current range of interest of ...more
>
> Thomas Broyer <t.broyer@gmail.com> Jan 10 04:26AM -0800
>
> DataGrid defaults to a pageSize = 50 (see
> http://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/user/cellview/client/DataGrid.html#DataGrid())
>
> You have to call setPageSize ...more
>
> Dan Verkman <blintegra@aol.com> Jan 10 07:53AM -0500
>
> Tom,
>
>
> I would imagine I could then perform my query, load the data via the
> ListDataProvider, and then call setPageSize (or is it setRowCount) with the
> amount of rows I just loaded? ...more
>
> Thomas Broyer <t.broyer@gmail.com> Jan 10 05:05AM -0800
>
> I believe you'd have to call setPageSize *before* changing your
> ListDataProvider; but yes, there's no reason it wouldn't work:
> ListDataProviders simply calls setRowCount/setRowData on its attached
> ...more
>
> DatePicker : clear all styles
>
> Sean <sloughran@gmail.com> Jan 10 05:04AM -0800
>
> I'm still waiting for a way to do this. Everything is private, you can't
> even extend and create your own. Or CnP the source, because many of the
> classes it uses aren't visible either.
> ...more
>
> GWT client static variable versus Server side Session object
>
> Leung <leung1_2000@yahoo.com> Jan 10 02:46AM -0800
>
> Hi,
>
> If I need to save some information of the login user, e.g locale, should I
> put it on server side session object? Or declare a class and a static
> varible on the gwt client folder of the ...more
>
> AsyncProxy and ActivityMapper
>
> kretel <krzysztof.retel@gmail.com> Jan 10 01:44AM -0800
>
> Got it working. Thanks for your help Jens and Patrick.
>
> Now I have a problem with @Assisted injection for injecting a place to
> Activity constructor. Would try to solve it using factory for ...more
>
> using in-memory data-structures in GWT
>
> junaid <junaidp@gmail.com> Jan 10 01:23PM +0500
>
> Hi
> I have a client requirement of
> not to use an RDBMS, but instead do everything using in-memory
> data-structures in GWT. If the server is restarted then the application
> state will revert to the ...more
>
> Thomas Broyer <t.broyer@gmail.com> Jan 10 01:31AM -0800
>
> There are in-memory RDBMS if you want (H2 for instance).
>
> Otherwise, "public static final" fields and synchronized() blocks all over
> the place (and/or using a ConcurrentMap implementation –e.g. ...more
>
> GWT 2.4.0 - Run Validation Tool error
>
> Daemon Zak <sajeeve@gmail.com> Jan 09 03:24PM -0800
>
> Hi
>
> Has anyone seen the below error
>
>
> "java.lang.RuntimeException: The RequestFactory ValidationTool must be
> run for the com.abc.bbb.DashboardRequestFactory RequestFactory type"
>
>
>
> ...more
>
> Daemon Zak <sajeeve@gmail.com> Jan 09 03:24PM -0800
>
> Hi
>
> Has anyone seen the below error
>
>
> "java.lang.RuntimeException: The RequestFactory ValidationTool must be
> run for the com.abc.bbb.DashboardRequestFactory RequestFactory type"
>
>
>
> ...more
>
> Thomas Broyer <t.broyer@gmail.com> Jan 10 01:24AM -0800
>
> See
> http://code.google.com/p/google-web-toolkit/wiki/RequestFactoryInterfaceValidation
> (see the note in "Notes and Known Issues" in the release notes ...more
>
> GWT CellTable getColumnWidth problem when inserting a Column object
>
> Vibhas Zanpure <vibhas.zanpure@gmail.com> Jan 09 03:47AM -0800
>
> Hello,
>
> I am trying to implement dynamically resizable columns in GWT 2.4
> CellTable. What I am trying to do here is that on the "mousedown"
> event, I get the X,Y co-ordinates where the mousedown ...more
>
> Vibhas Zanpure <vibhas.zanpure@gmail.com> Jan 10 01:12AM -0800
>
> Sorry the code couldn't get indented when i posted earlier... Here is
> the indented code :-
>
> CellTable<String[]> cellTable = new CellTable<String[]>(10, tableRes);
>
> // tableRes is a tableResources ...more
>
> Vibhas Zanpure <vibhas.zanpure@gmail.com> Jan 10 01:15AM -0800
>
> Oops I made a mistake in the earlier post. Its working with
> setColumnWidth() but NOT working when i pass that same column object
> to getColumnWidth()... Any solution for this ? Thanks in advance.
> ...more
>
> loading an image
>
> Derek <derekadean@gmail.com> Jan 09 06:44AM -0800
>
> The loadhandler won't fire until the image is added to the DOM. So for
> example, you could put view.setImage(image) outside the loadhandler,
> and GWT.log("loaded!") inside the loadhandler, and then ...more
>
> tanteanni <tanteanni@hotmail.com> Jan 10 12:35AM -0800
>
> thx,
>
> but my problem is, that it fails outside hosted mode. in hosted mode the
> image is loading, in real mode the small destroyed image icon appears (that
> appears in browser if image is not ...more
>
> Best VPN for Linux based GWT development
>
> sachin sreenivasan <sachin.sreenivasan24@gmail.com> Jan 09 12:38PM -0800
>
> Hi,
>
> This might not really be a GWT related question. But I wanted to
> know which is the best VPN for a linux based environment. Have to do
> things like CVS, sharing the GWT app in hosted mode ...more
>
> Konstantin Zolotarev <Konstantin.Zolotarev@gmail.com> Jan 09 10:52PM -0800
>
> I'm using openvpn + ubutnu server 11.04.
> Works great.
> ...more
>
> Android GWT apk - Cache.html error
>
> shrekjo <snehajonnala@gmail.com> Jan 09 10:01PM -0800
>
> Hello All,
>
> I have created a gwt application with localstorage. It works very well
> on the desktop.
> When I tried converting this gwt application into android apk using
> gwt-phonegap , while running ...more
>
> How to use doPost method in Formpanel submit button. How to map that
> servlet in web.xml.
>
> Eric Metcalf <emetcalf.pfx@gmail.com> Jan 09 08:22AM -0800
>
> It's very well explained in the documentation for FormPanel.
>
> http://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/user/client/ui/FormPanel.html
>
> Where myFormHandler in ...more
>
> "Pandy .k" <pandy.k0520@gmail.com> Jan 10 01:57AM +0530
>
> i got an idea about how to use GWT Form Panel in Eclipse...
>
> At Same time,
>
> My Class Name is: User.Java
> inside of "/src/sample/model/"
>
>
> My servlet name is : AddUserSerivesImpl ...more
>
> Thad <thad.humphries@gmail.com> Jan 09 02:21PM -0800
>
> You need the module name for your GWT app. For my module, MyModule,
> use
>
> <url-pattern>/mymodule/AddNewUser</url-pattern>
>
> In my code, call
>
> form.setAction(GWT.getModuleBaseURL() + ...more
>
> ui:style example doesn't work
>
> Thad <thad.humphries@gmail.com> Jan 09 02:07PM -0800
>
> The "Hello Stylish World" example (http://code.google.com/webtoolkit/
> doc/latest/DevGuideUiBinder.html#Hello_Stylish_World) shows that there
> can be more than one ui:style element, but when I try ...more
>
> Efficient code splitting in a large application?
>
> socratesJ <mcarthum@gmail.com> Jan 09 11:36AM -0800
>
> I'm attempting to implement code splitting with GIN in an Activities and
> Places context, using some of the ideas found here:
> http://code.google.com/p/google-web-toolkit/issues/detail?id=5129
> ...more
>
> SelectionCell not receiving focus when dispatching native click event
>
> "R.K.P. Pisters" <r.k.p.pisters@gmail.com> Jan 09 10:45AM -0800
>
> Hi all,
>
> I'm trying to build a CellTable with editable text fields in such a
> way that when the user presses the enter key in such a text field, the
> focus is given to the cell in the next column. ...more
>
> Need advice about a simple PHP and GWT SSO approach.
>
> Nano Elefant <nanofant@gmail.com> Jan 09 07:58AM -0800
>
> Hello,
>
> I am in need of some advice about GWT authentication. Here's what I'm
> planning to do:
>
> 1. Embed a GWT application into a site served by a PHP CMS like
> Drupal, Joomla, Wordpress. ...more
>
> Juan Pablo Gardella <gardellajuanpablo@gmail.com> Jan 09 01:08PM -0300
>
> Evaluate
> josso<http://www.josso.org/confluence/display/JOSSO1/JOSSO+-+Java+Open+Single+Sign-On+Project+Home>to
> SSO too, it integrates with PHP.
>
> Juan
>
> ...more
>
> Nano Elefant <nanofant@gmail.com> Jan 09 10:23AM -0800
>
> Hello Juan,
>
> thank you mentioning josso. I understand that josso would fit in, but
> i'm a little bit afraid that using josso would make the project more
> complicated than neccssary. ...more
>
> com.google.gwt.user.client.rpc.StatusCodeException: 12002 exception in IE8
> (not Chrome or FF)
>
> Ryan Groten <rgroten@gmail.com> Jan 09 08:07AM -0800
>
> We have a GWT 2.4 app that makes regular (every 5 seconds) async rpc calls
> to request data from an httpd/tomcat web server. In Firefox and Chrome
> everything works as expected but in IE8 after a ...more
>
> GWT communication with REST
>
> Travis Camechis <camechis@gmail.com> Jan 09 09:38AM -0500
>
> You should be able to use GWT RequestBuilder along with the GWT's JSON
> support. That is how I have done it in the past.
>
> ...more
>
> "Raphael André Bauer" <raphael.andre.bauer@gmail.com> Jan 09 04:38PM +0100
>
>> instead of RPC .
>
>> I am planning to use spring mvc as model view controller and REST API .
>> Any body have any sample code or link please share with me
>
> We use restygwt. Pretty easy to use and ...more
>
> GWT Developer Plugin for Firefox 9
>
> Casper Bang <casper.bang@gmail.com> Jan 09 03:20AM -0800
>
> On Thursday, December 22, 2011 10:30:09 AM UTC+1, Alan Leung wrote:
>
>> I have both 32 and 64 bit linux compiled.
>
>
> Thank you my good man!
> ...more
>
> Samyem Tuladhar <samyem@gmail.com> Jan 09 07:31AM -0800
>
> Time for Firefox 10 now!
> ...more
>
> Error - files not found
>
> Diego Bigliani Solamito <diegosolamito@gmail.com> Jan 09 01:13PM -0200
>
> Thanks Juan,
>
> I havent tried it yet.
> As soon as I tried I keep you informed,
>
> regards
> --
> =Diego
>
>
> On Sun, Jan 8, 2012 at 10:09 PM, Juan Pablo Gardella <
> ...more
>
> Basic error with package organization
>
> Diego Bigliani Solamito <diegosolamito@gmail.com> Jan 09 01:12PM -0200
>
> humn... thanks!
>
> I'll try this at home.
>
> I keep you informed,
>
> regards
> --
> =Diego
>
>
> ...more
>
> CssResource obfuscation map
>
> Davis <davis.bojars@gmail.com> Jan 09 04:47AM -0800
>
> Hi.
>
> I have read in
> http://code.google.com/p/google-web-toolkit/wiki/CssResource#Debugging_and_testing,
> that it is possible to debug CssResource, by having access to
> obfuscation map via native ...more
>
> Abridged summary of google-web-toolkit@googlegroups.com - 26 Messages in 13
> Topics
>
> Marcus Bendtsen <marcus@alexit.se> Jan 09 03:24PM +0100
>
> ...more
>
> You received this message because you are subscribed to the Google Group
> google-web-toolkit.
> You can post via email.
> To unsubscribe from this group, send an empty message.
> For more options, visit this group.
>
> --
> 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+unsubscribe@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
--
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+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
No comments:
Post a Comment