Re: GWT Commercial Support

2012-10-05 Thread vinayak
I understand this is a old post and I have same question in Oct 2012. I am from similar kind of company. Is there anybody who provides commercial support for GWT ? On Friday, April 25, 2008 10:59:34 PM UTC+5:30, Johann wrote: We have a rule in our company that every product that we use in

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

2012-03-02 Thread vinayak kulkarni
Hello, I am using the datagrid but didnt face any issue related to larger row size. It only occurs during data wrapping if text size is more. In your case, some data might have been overflown with space character to the next line which may be showing larger size On Feb 27, 11:55 pm, Bill M

Re: want to create csv file in gwt

2012-03-02 Thread vinayak kulkarni
Hello, Here is how you can do it: On the client side, after submit: final FormPanel formPanel = new FormPanel(C.exportFormPanel()); formPanel.setAction(GWT.getModuleBaseURL() + C.csv()); final FlowPanel flowPanel = new FlowPanel(); formPanel.setWidget(flowPanel); final Hidden

Re: String to Object Structure in GWT

2012-03-01 Thread vinayak kulkarni
GWT has a class called Tree. It also has TreeMenuItems. Use REGEX and iterate over nodes and make it a Tree object. It will give a Tree structure in UI. If you just want to convert your string to Tree structure, its plain java. Nothing to do with GWT. On Mar 1, 1:02 am, Deepan

Re: GWT Editor with dynamic ListBox problem

2011-07-18 Thread vinayak kulkarni
Thanks..It worked out:-) -- 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/-/DtYNzVVkQ5YJ. To post to this group, send email to

Re: GWT Editor with dynamic ListBox problem

2011-07-15 Thread vinayak kulkarni
I agree with you to call setAcceptableValue() before driver.edit But, i have a different problem.. I need to edit the subEditor, which is ValueListBox Presenter call driver.edit() on a widget ModelView. ModelView has inner widget(sub editor) ValueListBox ex: ModelView implements EditorModel

Re: my biggest problem with gwt

2011-07-15 Thread vinayak kulkarni
This is because GWT compiles the javascript for all the browsers.. around 5 browsers - 10 permutations.. For the development mode, you can compile only for one browser. Ex: for IE, use the below property in *.gwt.xml file This would reduce your compile time.. -- You received this message

Re: my biggest problem with gwt

2011-07-15 Thread vinayak kulkarni
http://www.coderanch.com/t/480416/GWT/Improved-Compiler-Performance-GWT-Reduce -- 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/-/tW9IXgx_VHQJ. To

GWT Editor with dynamic ListBox problem

2011-07-14 Thread vinayak kulkarni
Hi, Problem: How to use dynamic listbox with editor framework I have the simple use case to display a ListString in the listbox. Then, the selected item in the listbox needs to be flushed from the UI. The values of the listbox are not static, they come from the DB during runtime. I wanted to

GWT fails in recognising common module CSS file referred in common module - ui.xml file.

2011-06-08 Thread vinayak kulkarni
Hello, I have a common module, module1.gwt.xml . It is not an entry point class. It is just inherited from main module. In common module, i have a widget and its respective ui.xml file which i want to reuse in other module. *package - common.client.view.* *MyWidget.ui.xml: * !DOCTYPE

Re: when i am using this code it gives error

2011-06-08 Thread vinayak kulkarni
Before making the jar containing ContactEntry class, put these module - ui.xml files and then export as jar with source code. Inheriting is same as i explained above. You need to inherit all the modules which have the classes used in the client side. It is only used by GWT compiler while

Re: when i am using this code it gives error

2011-06-07 Thread vinayak kulkarni
You need the source-code of the jar while compiling into javascript. What is the folder structure being used? where does this contactEntry reside? if its just a jar, then, include its source code also. -- You received this message because you are subscribed to the Google Groups Google Web

Re: when i am using this code it gives error

2011-06-07 Thread vinayak kulkarni
You need to create a module and reference it as a GWT module. In the referenced library, go, to contactEntry JAR file. If contactEntry package is com.yyy.zzz.ContactEntry put ContactEntry.gwt.xml in the package com.yyy Its content would be module inherits name=com.google.gwt.user.User /

Re: UiBinder and Editors

2011-06-07 Thread vinayak kulkarni
With editors, there is no loss of control on what is added to the view. with editordriver.edit(), we map beans with views. with editordriver.flush(), the values present in the view will be flushed back to the beans. We can flush it on whichever event we can. Where is the question of control

Re: when i am using this code it gives error

2011-06-07 Thread vinayak kulkarni
Whatever may be the name of the jar. But, it is the parent directory of the Class Name.ie. where exactly ContactEntry resides. Similarly,it has to be done for all the beans which are used from client side. On Tue, Jun 7, 2011 at 4:24 PM, Neha Chandra niki.chan...@gmail.com wrote: i have

Re: ValueListBox custom binding

2011-06-06 Thread vinayak kulkarni
Dear, Here is how you can achieve this: May be a crude solution but it works. Make your editor as LeafValueEditorString ie. public class MyWidget extends Composite implements LeafValueEditorString @UiField ValueListBox listOfString; private static String selectedValue; //holds the values

Re: ValueListBox custom binding

2011-06-06 Thread vinayak kulkarni
Could you just post your code snippet. POJOs and the relevant presenter and the Widgets? -- 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: Ganymede Eclipse Older GWT Plugin link needed

2011-03-01 Thread vinayak kulkarni
Hi, I also get the same error while installing the GWT plugin to eclipse 3.4.2. May i know as to why this error occurs? On Feb 22, 7:12 am, Mulder udpa...@gmail.com wrote: I get the following error- Cannot complete the request.  See the details. Unsatisfied dependency:

GWT Eclipse plugin installation error

2011-03-01 Thread vinayak kulkarni
Hi, while installing the plugins and SDK from google update site for eclipse, i get the following error. Eclipse version: 3.4.2 Cannot complete the request. See the details. Unsatisfied dependency: [com.google.gdt.eclipse.suite.e34.feature.feature.group 2.2.0.v201102111801] requiredCapability:

Re: Setting GWT project from existing GWT project code.

2010-05-04 Thread vinayak
r.naveens...@gmail.com wrote: click on new project and import the GWT project.. it will work.. Regards Naveen On Mon, May 3, 2010 at 6:31 PM, vinayak vinayakshu...@gmail.com wrote: Hello,                        There are several posts in this group which ask about how to integrate

Setting GWT project from existing GWT project code.

2010-05-03 Thread vinayak
Hello, There are several posts in this group which ask about how to integrate gwt project inside another type of projects but my question is different and simple too. I have created a gwt project and developed it to certain extent and now I want to give this code to my

Issue with GWT compiling of classes which have imports of JDK1.6 classes

2010-04-20 Thread vinayak
Experts, I have a simple gwt app. One of its class inside shared dir has a import of javax.lang.model.element.AnnotationMirror. I am using JDK1.6 for compiling my project in eclipse 3.4. Eclipse shows me no errors. But when I click on gwt compile option I get following error.

Re: Issue with GWT compiling of classes which have imports of JDK1.6 classes

2010-04-20 Thread vinayak
Thanks for the help. I will try to use super-source path=foo/. -vinayak On Apr 20, 4:40 pm, Paul Robinson ukcue...@gmail.com wrote: You can use a super-source path=foo/ in your gwt.xml to provide a different implementation of a java class for use client side. However, there is limited

Re: GWT Compilation of gwt project with multiple modules

2010-03-01 Thread vinayak
Thanks Ashar. Others, please share information regarding this. 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-tool...@googlegroups.com. To unsubscribe from this

Re: Can I embed GWT widget in exist HTML page?

2010-03-01 Thread vinayak
I don't think it is impossibleyou can import js file in the same way and should have empty html elements expected by your onModuleLoad() methoddone. Try one such example and post it back here...so that others can find it useful... On Feb 27, 3:09 pm, Chatree chatree.srich...@gmail.com

Re: GWT Compilation of gwt project with multiple modules

2010-02-19 Thread vinayak
a look at other part of the question. Thanks in advance. - vinayak On Feb 19, 4:36 pm, Ashar Lohmar asharloh...@gmail.com wrote: the MyModule that will be used in MyModuleUsage module does not need to be GWT compiled ... and even further you can't GWTcomplie it without an entry point, but you

Re: GWT Compilation of gwt project with multiple modules

2010-02-18 Thread vinayak
Moderators, Nobody is answering this question. Is it that others can not view this thread anywhere? Do I need to do something more to make it viewable to others ? Question must be easily answerable Please help. Thanks. - vinayak On Feb 17, 11:17 am, vinayak vinayakshu

GWT Compilation of gwt project with multiple modules

2010-02-17 Thread vinayak
Hello, I am a newbie to GWT and using gwt 2.0 and now gwt 2.0.2 to create my web application. (Actually I am converting my existing app to a gwt app...). To do this I am trying one small example. To avoid very large .no-cache.js file and large first page Ioad time, I have created 1

Re: How to create custom gwt library

2010-02-17 Thread vinayak
Ashish, Probably we are trying same thing Check my question threadProbably that will help you... http://groups.google.com/group/google-web-toolkit/browse_thread/thread/58aa1f5762d3e87a# -- You received this message because you are subscribed to the Google Groups Google