Re: datagrid body is disappeared!! height is zero!!

2013-01-15 Thread Kei Kei
finally I give up and change back to use celltable inside a scrollpanel. client do not want to upgrade to GWT 2.5, so upgrade is not possible. it happen in IE9 and FF13. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Re: how to show horizontal scrollbar in scrollpanel automatically?

2012-12-18 Thread Kei Kei
No, the scrollpanel overflow property is already auto, but the horizontal scrollbar cannot be shown in ie8 or FF13 I set the css using scrollPanel.getElement().setAttribute(style, width:210px;height:247px;border:1px solid #B5BBC8; overflow:auto;); In FireFox, I use firebug and see

Re: ListDataProvider and VM use up memory

2012-11-08 Thread Kei Kei
Sorry, what is server-side caches and second level cache? On Fri, Nov 9, 2012 at 12:50 AM, Ümit Seren uemit.se...@gmail.com wrote: Exactly for that reason there are server-side caches. Just set up a second level cache (ehcache, etc) and that should solve your scaling issue. If you use Spring

Re: how to export a ArrayListString in gwt to external file?

2012-06-18 Thread Kei Kei
I do not underatand how to implement step 2 and 3, so I try to use GWT-RPC to call servlet to export the data, to simplify the case, I just try to hardcode the output text first, with the following code in the RemoteServiceServlet public void exportHistory(ArrayListString sqlHistory){

Re: How to make CellTable Header always on top

2012-05-30 Thread Kei Kei
the datagrid, what happens? On Wed, May 30, 2012 at 2:14 PM, Kei Kei tong123...@gmail.com wrote: When I change my application from using CellTable to DataGrid, then nothing can be shown on the result page!! then I try to test the example in http://google-web-toolkit.googlecode.com/svn/javadoc/2.4

Re: How to make CellTable Header always on top

2012-05-30 Thread Kei Kei
I really get confused. in my result page, the hierarchy of widget is DialogBox encloses TabLayoutPanel encloses FlexTable, the FlexTable has three rows. in the first row, after I add a SimpleLayoutPanel with setSize(100%, 360px); and then encloses the DataGrid inside SimpeLayoutPanel, the DataGrid

Re: How to make CellTable Header always on top

2012-05-29 Thread Kei Kei
When I change my application from using CellTable to DataGrid, then nothing can be shown on the result page!! then I try to test the example in http://google-web-toolkit.googlecode.com/svn/javadoc/2.4/com/google/gwt/user/cellview/client/DataGrid.html with just very minor modification (as attahced

Re: maven gwt module depends on a external jar

2012-05-21 Thread Kei Kei
I have called the source:jar-no-fork goal in my *-core.pom.xml project (and als-admin-viewer-core-1.0.0-sources.jar is generated), and I already add the dependency on the webapps pom.xml dependency groupIdhk.gov.ehr.service.tch.als/groupId artifactIdals-admin-viewer-core/artifactId

Re: maven gwt module depends on a external jar

2012-05-21 Thread Kei Kei
I have called the source:jar-no-fork goal in my *-core.pom.xml project (and als-admin-viewer-core-1.0.0- sources.jar is generated), and I already add the dependency on the webapps pom.xml dependency groupIdhk.gov.ehr.service.tch.als/groupId artifactIdals-admin-viewer-core/artifactId

Re: maven gwt

2012-05-16 Thread Kei Kei
following the website http://www.uptick.com.au/content/getting-started-gwt-maven-and-eclipse#comment-263 and start from the middle webAppCreator -maven -out MyGwtMavenSampleApp au.com.uptick.gwt.maven.sample.MyGwtMavenSampleApp and finally the step 4. Test the application in development mode

Re: any method to migrate an existing gwt application to maven project

2012-05-16 Thread Kei Kei
How to download the source from http://code.google.com/p/google-web-toolkit/source/browse/trunk/samples/#samples%2Fmobilewebapp ? -- 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: maven gwt

2012-05-16 Thread Kei Kei
I am in home now, but before using maven, I put the css file under module folder/public and I placed images folder under war directory, now I need place these css and image under src/main/resources? In gwt developer guide

Re: maven gwt

2012-05-16 Thread Kei Kei
!-- Mark the project for Google Plugin for Eclipse (GPE) -- plugin artifactIdmaven-eclipse-plugin/artifactId version2.8/version configuration downloadSourcestrue/downloadSources downloadJavadocsfalse/downloadJavadocs

Re: maven gwt

2012-05-16 Thread Kei Kei
in http://code.google.com/p/google-web-toolkit/source/browse/trunk/samples/dynatablerf/pom.xml configuration !-- URL that should be automatically opened in the GWT shell (gwt:run). -- runTargetDynaTableRf.html/runTarget !-- Ask GWT to create the Story of Your

Re: does any Breedcrumb widget in gwt 2.4?

2012-04-17 Thread Kei Kei
what is gwt bootstrap? I glance the site http://gwtbootstrap.github.com/ but does not find any breedcrumb widget, also, even it has, it is some framework like GXT, SMARTGWT but not GWT? On Mon, Apr 16, 2012 at 9:12 PM, Thomas Lefort lefortho...@gmail.comwrote: May be follow bootstrap for gwt?

Re: How to make a hourglass pointer?

2012-04-10 Thread Kei Kei
I use the following code public class ShowHourGlass extends FlowPanel { Button showHourGlass = new Button(Show HourGlass); protected void onLoad(){ this.add(showHourGlass); showHourGlass.addClickHandler(new ClickHandler(){ @Override public

Re: how to go to a widget at the top of the page

2012-04-05 Thread Kei Kei
I try to call errMsgPanel.getElement().scrollView(); where errMsgPanel is a FlowPanel, it throws error: NoSuchMethodError:com/google/gwt/user/client/Element.scrollIntoView()V at com.ha On Thu, Apr 5, 2012 at 4:25 PM, Jens jens.nehlme...@gmail.com wrote: Have you tried to call

Re: how to go to a widget at the top of the page

2012-04-05 Thread Kei Kei
For more information, I am using GWT 2.4. the errMsgPanel.getElement().scrollIntoView() is called inside a button clickHandler. On Thu, Apr 5, 2012 at 4:52 PM, Kei Kei tong123...@gmail.com wrote: I try to call errMsgPanel.getElement().scrollView(); where errMsgPanel is a FlowPanel, it throws

Re: how to go to a widget at the top of the page

2012-04-05 Thread Kei Kei
the problem disappear now after rebuild the whole project, errMsgPanel.getElement().scrollView(); can function as expect. thanks On Thu, Apr 5, 2012 at 4:56 PM, Kei Kei tong123...@gmail.com wrote: For more information, I am using GWT 2.4. the errMsgPanel.getElement().scrollIntoView() is called

Re: about css style in gwt

2012-03-07 Thread Kei Kei
Sorry, I still have something not clear. if the css selector is .gwt-MenuBar .gwt-MenuItem then under normal html, how to use it? class=gwt-MenuItem class=gwt-MenuBar .gwt-MenuItem seems both does not work. I try to create a label, and if I write the css as .gwt-Label .innerTitle then I found no

Re: ImageResources cannot show image as expected

2012-03-07 Thread Kei Kei
I try to run a gwt compile but still have no any clue. anyway, for the worst case, I can still use Image ha_logo_files = new Image(imagepath); without using ImageResources On Thu, Mar 8, 2012 at 12:12 PM, JoseM jose.a.marti...@gmail.com wrote: Maybe the ehealthlogo.png is missing from the