Re: UI Designer GWT Developer BEST Workflow Practices?

2013-05-31 Thread BST
I am not sure if I understand you correctly, I am guessing you want to just use HTML/CSS for designing, so you could just mockup using html and copy the same into an ui.xml, maybe inside a HTMLPanel widget. The HTMLPanel is a div in itself, and all your html code with css would remain the

Re: Generating GWT widgets based on an XML template

2012-01-12 Thread BST
I have been looking for something like this and this seems to be a good strategy.@Arshad Would be great if you let me know if this was successful. My query is how did/would you push the values from the generated UI to a database ? The DTO is representing the UI, and how to capture the values

Re: GWT 2.3 Upgrade breaks hibernate queries?

2011-09-16 Thread BST
Hi All, I am facing the same issue and I have added the validation-api-1.0.0.GA.jar, validation-api-1.0.0.GA-sources.jar, hibernate-validator-4.1.0.Final-sources.jar, and hibernate-validator-4.1.0.Final.jar to the war/WEB-INF/lib and to the eclipse classpath(buildpath) but the issue still

Re: GWT 2.3 Upgrade breaks hibernate queries?

2011-09-16 Thread BST
Hi All, I am facing the same issue and I have added the validation-api-1.0.0.GA.jar, validation-api-1.0.0.GA- sources.jar, hibernate-validator-4.1.0.Final-sources.jar, and hibernate-validator-4.1.0.Final.jar to the war/WEB-INF/lib and to the eclipse classpath(buildpath) but the issue still

Re: GWT 2.3 Upgrade breaks hibernate queries?

2011-09-16 Thread BST
http://osdir.com/ml/Google-Web-Toolkit/2011-02/msg02044.html Found a solution to the problem, where validation is disabled for hibernate, so no need to add the additional jars. This worked for me. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: Clojure on the back end / suggestions before I get started?

2011-08-26 Thread BST
https://groups.google.com/forum/#!forum/clojure I am guessing guys at this forum might give u a better idea of how to design. It is interesting to know about Clojure. Probably you also should explore if you can make it run on a server to service requests and you can use it with GWT RPC.. --

Re: Getting Height of cell table

2011-08-17 Thread BST
Managed to find a solution: updating it below. I am adding a handler to the celltable when the celltable updates it rowdata automatically a valueChange event is fired, so making use of it. Had to go thru the source code for this. .addHandler(new ValueChangeHandlerMyDTO() { @Override

Re: Custom Handlers for CellTable

2011-08-17 Thread BST
A solution for adding ValueChange Handler: https://groups.google.com/d/topic/google-web-toolkit/yN3K778FVsU/discussion -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: CellTable

2011-08-17 Thread BST
Is it like a Cell Table that directly edits csv files or something like that? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/qZegttRnr-gJ. To

Re: MenuBar working well in hosted page but not in the others

2011-08-17 Thread BST
I just tried the example that you posted. It works for me. I am getting an alert whenever I select Bold or A or B. Are you expecting something else? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: requestfactory security problem

2011-08-17 Thread BST
http://google-web-toolkit.googlecode.com/svn/javadoc/2.3/com/google/gwt/requestfactory/server/RequestFactoryServlet.html Message in the above link RequestFactory has moved to com.google.web.bindery.requestfactory. This package will be removed in a future version of GWT. -- You received this

Re: How do I load test data into my Widget

2011-08-17 Thread BST
I guess what you are looking for is uploading the files or keeping the files in server and displaying the list of available files in a location at server or war file and when clicked display the contents of the file. -- You received this message because you are subscribed to the Google Groups

Custom Handlers for CellTable

2011-08-16 Thread BST
Can I handle the event when the Cell Table completes displaying the changes on the ListDataProvider on the screen? Maybe after setRowData is called? Assume that the RowCount does not change and that the Visible Range also stays the same. -- You received this message because you are subscribed

Re: Getting Height of cell table

2011-08-16 Thread BST
Any Solutions for this problem? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/XlmKdD5ydPIJ. To post to this group, send email to

Re: MenuBar working well in hosted page but not in the others

2011-08-16 Thread BST
Could you elaborate, maybe provide code snippet ? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/Y_bxITPaS0cJ. To post to this group, send

Re: Cannot display Facebook Like or Send button in GWT

2011-08-11 Thread BST
Probably you may find something in this https://groups.google.com/d/topic/google-web-toolkit/XK0L5uiKh1A/discussion http://code.google.com/p/gwtfb/ I noticed they were using anchors etc. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group.

Re: Celltable loading state

2011-08-11 Thread BST
Hi John, Is there any way to disable the loading indicator from showing ? I even tried native methods, no luck. I am using a ListDataProvider, when I have data to show I just clear the existing list of the data provider. But problem is first time the image always shows. One way is to replace

Re: GWT : Best practice to send huge amount of data from server to client

2011-08-10 Thread BST
I had a similar requirement. What I am doing now is getting 300 records at a time, and showing on the cell table. When the user clicks on next and if it is the last page I get another set of records using a RemoteService and update the Cell Table. Since I required a different kind of pager, I

Re: Cannot display Facebook Like or Send button in GWT

2011-08-10 Thread BST
Shouldn't the /div tag be after the /fb:send tag? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/G-cRX67rpuoJ. To post to this group, send

Re: How do I get PNG image data as a decoded bytearray?

2011-08-02 Thread BST
By read do you mean upload it from a location on the client side? For that you need to use a GWT FormPanel and Apche commons ServletFileUpload to get the file item then do the usual java io process to convert to a byte array. If this is not what you looking for , please elaborate on the

Cell Table, Remote Paging Issues

2011-07-30 Thread BST
I am trying out Remote Paging with a Cell Table Implementation of Abstract Pager . For now I am limiting the CellTable to 30 rows for data. My Pager takes care of fetching the next batch of 30 rows from RemoteService, when the next or previous button is clicked. I get 30 rows of data from

Re: Dynamically convert between TextBox and PasswordTextBox

2011-07-30 Thread BST
Just to get my understanding straight, on what event would you change the textBox to a PasswordBox? If there is really a event can't you create a new passwordTextBox to replace the TextBox? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group.

Re: Cell Table, Remote Paging Issues

2011-07-30 Thread BST
I didn't think of overriding last Page first Page. Thanks for the pointer.. I shall look into the link. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Alternative to Drop Down List Box !

2011-07-29 Thread BST
I just wanted to update on the Drop Down List Box, GWT Incubator Drop Down List BoxNot planned at this time, but some people use a vertical MenuBarhttp://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/user/client/ui/MenuBar.html to achieve the same effect While trying

Cell Table Data Handling Performance

2011-07-25 Thread BST
this, how the object handling in a list w.r.t Cell Table is done , and do the objects exist once objects are converted to html in the Cell Table on the client Side? Regards, BST -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

Re: Cell Table Data Handling Performance

2011-07-25 Thread BST
Many Thanks for the input. The scenario is that I am not displaying more than 100 rows per page. And the pager works through 3 pages. Yes the Data load is on Demand, as when the user presses the next button for the 4th page I am getting another 300 rows thru an RPC. It is a plain view only

Re: position of selected row in a celltable

2011-07-25 Thread BST
I did try what you wanted, but even I am stumped. What I was trying was getting the source from the SelectedModel, and getting its absoluteTop and absoluteLeft, but that did not work. I will surely update if I find any other way to do this. -- You received this message because you are

Re: Cell Table Data Handling Performance

2011-07-25 Thread BST
Where does the datastore actually exist? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/iy93M8fa5hwJ. To post to this group, send email to