Unable to parse CSS - gwt 2.7 - Using DataGrid

2017-07-09 Thread Rohan Sachdeva
Hi All, I am using GWT DataGrid in some application and facing following issue:- [ERROR] Unable to parse CSS org.w3c.css.sac.CSSException: @def rules must specify an identifier and one or more values at

Guidance for implementing the assignment.

2013-02-06 Thread Rohan kulkarni
hi, How to implement the right click handler on tree ,flex table,composite widget(image,label). thanks, Rohan kulkarni -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop

GWT project sturcture

2012-06-09 Thread Rohan
am having trouble visualizing a project structure for website using GWT modules. May be some one can post an actual multi-page project structure I can look at? Thanks, Rohan -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

Re: Fitting Activities and Places in current architecture

2011-10-20 Thread Rohan Aggarwal
I am sure Sampath, might be u handled earlier browser history based HistoryToken and Fragement. But with Acitivites an dPlace you to have write lot of boilerplate code, which makes sense in future but now depends on timeline of ur app u have to decide. But ya definitely you need to rewrite

Re: Place, history url does not change

2011-10-20 Thread Rohan Aggarwal
I have faced similar problem, I think below are few from code snippet: 1. Placecontroller should be singleton across ur app. 2. You should bind activity and Place ... 3. I am not seeing any activities in ur sample. On Fri, Oct 21, 2011 at 10:14 AM, Rikard Hultén rikardhul...@gmail.comwrote:

Hyprelink eg for Activities an dPlace

2011-10-18 Thread Rohan Aggarwal
Hi, Any basic example available or anyone aware of using Hyperlink with Activities and Places, please can provide me... Thanks Rohan. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

Places Activities any suggestion?

2011-10-17 Thread Rohan Aggarwal
details of the student in database. http://VITS/welcome.html?Mechanical:studentId=10studentName=50 How to achieve this, please help i am struck here badly. Here is the code below which i have wrritten... Rgds Rohan -- You received this message because you are subscribed

Re: Places Activities any suggestion?

2011-10-17 Thread Rohan Aggarwal
Thanks Jen and one more question. I have a hyperlink eg: Now the problem is i am trying to navigate when a user click on Hyperlink available in Mechnical (tab) to Chemical (tab) Below is the snippet code, please let me know any issue with the code below MechanicalActivity.java public

Re: Places Activities any suggestion?

2011-10-17 Thread Rohan Aggarwal
Andrew, But this doesnt solve the problem, can anyone provide some insight into this. Rgds Rohan. On Mon, Oct 17, 2011 at 11:41 PM, Andrea Boscolo andrew...@gmail.comwrote: See https://groups.google.com/forum/?starthl=en#!starred/google-web-toolkit/PzlyZ3Gjazg -- You received

Re: Places Activities any suggestion?

2011-10-17 Thread Rohan Aggarwal
at 7:07 PM, Rohan Aggarwal rohanaggarwal999...@gmail.com wrote: Hyperlink hyper = new Hyperlink(); hyper.setHTML(Navigate to Chemical); hyper.addClickHandler(new ClickHandler() { @Override public void onClick(ClickEvent event

Re: Places Activities any suggestion?

2011-10-17 Thread Rohan Aggarwal
Thanks Kelly that sounds good. Thanks Rohan On Tue, Oct 18, 2011 at 9:42 AM, Aidan O'Kelly aida...@gmail.com wrote: The Hyperlink object does not fire ValueChangeEvents, the History object does, but you probably don't need to listen for them, as your PlaceHistoryHandler is already listening

Re: Places Activities any suggestion?

2011-10-17 Thread Rohan Aggarwal
Sowdri, thanks for info. Below is the way i have tried but nothing help to solve this issue. Anything else i need to change i tired different ways. ChemicalPlace extends Abstract Place and also the required parsing of URL present in AbstractPlace. Now the problem when i clik on the link it does

Re: Google logo's to brighten up the app.

2011-08-29 Thread Rohan Chandiramani
Just a friendly bump, i would really like to know. -- 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/-/DP69cnVdHTYJ. To post to this group, send

Re: Google logo's to brighten up the app.

2011-08-29 Thread Rohan Chandiramani
Thank you Sean and karim33, both you're comments have been great help! -- 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/-/8X-gClttLFYJ. To post to

Google logo's to brighten up the app.

2011-08-25 Thread Rohan Chandiramani
Hi , My app is looking very bland at the moment and i was wondering if Google has a couple of logo's which web-app developers can use like a: GWT logo, App Engine logo and A Chrome logo I know i've seen them a really long time ago in the GWT documentation, but so much has been added i can't

Image onLoad doesn't fire in production

2011-08-20 Thread Rohan Chandiramani
appreciated! Rohan -- 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/-/O4IYhZwMIGIJ. To post to this group, send email to google-web-toolkit

Re: Current Row index in FlexTable

2009-07-13 Thread rohan
I am using flextable of com.google.gwt.user.client.ui.FlexTable. It neither has addClickhandler nor getCellForEvent() function. I have FlexTable reference with me, but How can i get on which row they clicked. Thanks Rohan On Jul 11, 5:42 am, waf wlod...@gmail.com wrote: Hi You should add

Re: Transparent screen

2009-07-10 Thread rohan
();                             }                         }));                         p2.center();                     }                 });             }         }));     } } Ian http://examples.roughian.com 2009/7/9 rohan subbu.ge...@gmail.com Hi Ian, I have Implemented the same thing, while testing the application I found it was delaying about 1 or 2 sec

Current Row index in FlexTable

2009-07-10 Thread rohan
Hi I have FlexTable, i will dynamically add elements into it. After that when i click on the elements in the FlexTable. How can i get the Row index(number) in the flextable. Thanks Rohan --~--~-~--~~~---~--~~ You received this message because you are subscribed

Transparent screen

2009-07-08 Thread rohan
){ popup.show(); do some work; it takes 5-6 sec. This time my screen is blocked with popup popup.hide(); } But it is not working, If i remove popup.hide(), popup is shown after the IF block executed. So at that time it is useless Can any one help me in this. Thanks Rohan

Re: Transparent screen

2009-07-08 Thread rohan
at a time. I removed popup.hide() to know whether popup is shown or not? It is showing popup after completion of all the process it shows popup. ( after execution of IF block) How handle this situation???/ Thanks Rohan On Jul 8, 10:42 am, Mikhail M itmo@gmail.com wrote: I suppose you should use

Re: Transparent screen

2009-07-08 Thread rohan
Rohan On Jul 8, 2:33 pm, Ian Bambury ianbamb...@gmail.com wrote: I think the Deferred command is actually a timer set to 1ms, so 1ms is added. Also it will run after everything else that has been queued so far. This means that other deferred commands issued so far will run first, and also

Re: Data binding

2009-04-24 Thread rohan
reading xmls and building the UI. so My code is generic for any XML file which is valid with XSD. So how can in bind barrower's sub objects with barrower objects, sub objects in house with house object and borrower and house object with Loanapplication object. Thanks for help Rohan

Data binding

2009-04-23 Thread rohan
i am displaying it on left side panel. I want to bind these book class object with UI form. I have a list of boks in left side panel. user will add more and more books, i need to add them in a Book arrayList. How can i bind book object with the UI form. How can i do that? Thanks Rohan

Re: Suggestions with code design

2008-12-09 Thread Rohan Redkar
Everyone, Thank you very much for the inputs. On Mon, Dec 8, 2008 at 3:42 PM, Thomas Broyer [EMAIL PROTECTED] wrote: On 7 déc, 05:54, Rohan Redkar [EMAIL PROTECTED] wrote: Hi everyone, My application requires the user to select a bunch of images from his system. Then I need to do

Suggestions with code design

2008-12-06 Thread Rohan Redkar
Hi everyone, My application requires the user to select a bunch of images from his system. Then I need to do modifications on these images(example aline them horizontally into a single image). I need some design suggestions on how I can achieve this? I guess, AWT cannot be directly used at the

Random.nextInt() causes java.lang.UnsatisfiedLinkError

2008-12-03 Thread Rohan Redkar
Hi, I am completely stumped by this error that I getting. I am using the Random class in the client package and not the native Java Random. import com.google.gwt.user.client.Random; When I include this line in my code, int index = Random.nextInt(1000); I get the following exception in my