Re: How to use Objects in SuggestBox instead of text Strings?

2013-03-25 Thread Qrunk
Hi, A very simple solution is to create an method by name *public String getDisplayString()* in your class *Foo*, which should return either bar or any other String field whichever you wanted to display on your SuggestBox. On Monday, 18 March 2013 15:50:05 UTC+5:30, membersound wrote: Hi,

Re: A good book to understand GWT 2.4

2012-06-26 Thread Qrunk
/category/google-web-toolkit/ - http://tbroyer.posterous.com/ - http://uptick.com.au/blog Cheers Rob Kiahu.com On Monday, June 25, 2012 11:04:40 PM UTC+10, Qrunk wrote: Hi , Please let me know any good book with all updated features of GWT (i.e. till 2.4) this will make a great help

A good book to understand GWT 2.4

2012-06-25 Thread Qrunk
Hi , Please let me know any good book with all updated features of GWT (i.e. till 2.4) this will make a great help. Thanks -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Setting focus on a Anchor button

2012-06-05 Thread Qrunk
Hi Can some one help me understand why we can't set focus on Anchor button though its a focus-able widget. We are using Anchor button as a Composite widget wrapped around a FlowPanel. We are unable to setFocus(true) on Anchor button. A sample code on this would be nice. :) Thanks. -- You

Re: GWT: CheckBoxCell and Selection change event

2012-05-11 Thread Qrunk
Hi Thomas, Thanks for the reply. Actually we were trying the same thing what you had mentioned, but a piece of code missing at model level which was causing the problem. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this

Re: GWT: CheckBoxCell and Selection change event

2012-05-10 Thread Qrunk
be done so that I can get the check box checked at just one click and the selection event should also be fired on that click on the check box cell.* Thanks. On Thursday, 10 May 2012 09:19:41 UTC+5:30, Qrunk wrote: Any help on this issue will be very helpful On Wednesday, 9 May 2012 16:00:25

GWT: CheckBoxCell and Selection change event

2012-05-09 Thread Qrunk
I am using the following constructor to create a checkboxcell in an editable data grid. *CheckboxCell(false, true)* When I use this and click at any place in the row, selection change event does not fire and I am using *Single selection model* . When I use, *CheckboxCell();*

Re: GWT: CheckBoxCell and Selection change event

2012-05-09 Thread Qrunk
Any help on this issue will be very helpful On Wednesday, 9 May 2012 16:00:25 UTC+5:30, Qrunk wrote: I am using the following constructor to create a checkboxcell in an editable data grid. *CheckboxCell(false, true)* When I use this and click at any place in the row, selection

Re: Filter Tree in GWT

2012-04-09 Thread Qrunk
. Thanks On Thursday, 5 April 2012 18:59:01 UTC+5:30, Patrick Tucker wrote: CellTree uses a list... After your GUI component works, custom header with textbox, you just need to filter the list?? On Wednesday, April 4, 2012 11:44:17 AM UTC-4, Qrunk wrote: Can some one please put some

Re: Filter Tree in GWT

2012-04-04 Thread Qrunk
Can some one please put some light on this issue ?? if GXT has already done it cant it be done now in GWT ?? On Tuesday, 3 April 2012 15:39:20 UTC+5:30, Qrunk wrote: Hi How to create a filter tree in *GWT* using *CellTre*e, a filter tree is some Tree which has an filter(TextBox) where we

Filter Tree in GWT

2012-04-03 Thread Qrunk
Hi How to create a filter tree in *GWT* using *CellTre*e, a filter tree is some Tree which has an filter(TextBox) where we can enter values for the leaf node. Once we start entering values we get the tree branches along with leaf nodes reflected on the Tree panel(we have our tree inside a

Re: Filter Tree in GWT

2012-04-03 Thread Qrunk
Can some one refer the below link and let us know about FilterTree http://stackoverflow.com/questions/9991133/getting-all-suggestions-from-the-suggestbox-in-gwt/9993597#9993597 Thanks On Tuesday, 3 April 2012 15:39:20 UTC+5:30, Qrunk wrote: Hi How to create a filter tree in *GWT* using

Re: Celltree: how to find tree node with key?

2012-03-20 Thread Qrunk
Can some one please answer the above question, as even I wanted to know how can we do this, for reference please follow the below link : https://groups.google.com/forum/?fromgroups#!searchin/google-web-toolkit/use$20of$20key$20provider$20$2B$20CellTree/google-web-toolkit/Fn3zetLb9eY/gj2vkPYX1LAJ

TreeNode object from key provider

2012-03-20 Thread Qrunk
Hi, Can some one help in finding out the TreeNode using a models key which we get from the ProvidesKey class associated with selection model. For reference please follow the below link :

Re: TreeNode object from key provider

2012-03-20 Thread Qrunk
Update : http://stackoverflow.com/questions/7978313/how-to-set-a-selection-in-the-gwt-cellbrowser On Tuesday, 20 March 2012 12:52:44 UTC+5:30, Qrunk wrote: Hi, Can some one help in finding out the TreeNode using a models key which we get from the ProvidesKey class associated

Re: TreeNode object from key provider

2012-03-20 Thread Qrunk
. On Tuesday, 20 March 2012 12:56:15 UTC+5:30, Qrunk wrote: Update : http://stackoverflow.com/questions/7978313/how-to-set-a-selection-in-the-gwt-cellbrowser On Tuesday, 20 March 2012 12:52:44 UTC+5:30, Qrunk wrote: Hi, Can some one help in finding out the TreeNode using a models key which

Re: Register your company if you are using GWT

2012-03-15 Thread Qrunk
Hi Kanagraj, Thanks for sharing such important information on GWT group ... Cheers :-) On Thursday, 15 March 2012 20:21:24 UTC+5:30, Kanagaraj M wrote: Hi Joseph, I am not the one who developed that application. I have got it in a post.

CellTree with dynamic levels of nodes

2012-03-15 Thread Qrunk
Hi, We have to prepare a cell tree whose levels are decided at run time, that is Say: Root Node :-- Composers:-- Music Albums:-- Singers:--

Styling of Leaf Nodes in cell tree

2012-02-15 Thread Qrunk
Hi, We have to implement an method which is something like setLeafIconStyle() how can we do that ?? Can someone help ?? Thanks -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

CellTree with Generics

2012-02-05 Thread Qrunk
Hi , What can be the possible replacement for the *instanceof* check made while developing a cell tree, currently we are facing an issue because of it as we are using generics, i.e something like public class GWTreeM extends CellTree { /

Re: is it possible to set multiple columns using CellTree?

2012-02-02 Thread Qrunk
Hi, Can someone please explain me, 1) what is *checkBoxColumn **and mainTextColumn 2)what is that HasCell list ?? 3)How to integrate it with in Google GWT CellTree example ?? Thanks * -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: How to set back ground color to a textfield

2012-01-31 Thread Qrunk
I tried the same on a button(*add *button), its working for me, try out this : @UiHandler(add) void onAddClick(ClickEvent event) { //addRows(); add.setEnabled(false); if(!add.isEnabled()){ System.out.println(Hello);

What is the use of Editor Frame work while binding data into the Data Grid

2012-01-30 Thread Qrunk
-toolkit/UFAMKck9Vdo Please help us understanding the basic use of using Editor Frame work with Cell Widgets (Data Grid) Thanks Qrunk -- 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

Doubt on Data Grid setFieldUpdater() method

2012-01-29 Thread Qrunk
Hi Thomas, I have confused with data grid's setFieldUpdater(), in my data grid I have one column with an Editable Text cell, but inside the setFieldUpdater() method Im not changing the object's value, or in other words I m not doing anything within setFieldUpdater()''s *update() method*, all

Editor Framework with DataGrid

2012-01-20 Thread Qrunk
Hi Thomas, I have a couple of questions on use of Editor Framework with DataGrid. Code Snippet used : Contacts.java public Contacts() { } public ListContact getContactList() { return contactList; } public void setContactList(ListContact contactList) { this.contactList = contactList; }

Cell table problem with driver.flush() part

2012-01-20 Thread Qrunk
Hi This is inline with my previous question : We have a used *HasDataEditor* to populate out *CellTable*, *but now we are facing a* problem with driver.flush() part, we trying to to driver.flush() and click of a save button, below you can find the code snippet, it throws an exception on

Editor Frame work and MVP

2012-01-19 Thread Qrunk
Hi , Just a general question, is it true that Editor Framework breaks MVP paradigm?? If yes please explain how ? Can we use it while using MVP Design pattern ?? Thanks in advance -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view

Doubts on EditorFrameWork

2012-01-18 Thread Qrunk
Hi Thomas, Currently we are using *SimpleEditorDriver* to bind data into our *UI*. We are facing a few problems in it 1. We can only bind a single property at a time, say like we cant bind a list of data to DataGrid/ComboBox , we have to set the *List* data through a separate method,

populating DataGrid/ ValueListBox using Editor framework

2012-01-17 Thread Qrunk
Hi, Is it possible to populate DataGrid/ ValueListBox using Editor framework just as we do it for TextBox by *driver.edit(Model m) ??* * * Thanks * * -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Doubt in implementing Events

2012-01-16 Thread Qrunk
Hi , In http://www.google.com/events/io/2010/sessions/gwt-continuous-build-testing.html its said that we should use setListeners() instead of addListeners(), Im confused as in how are they both different, can anyone please explain that concept with the help of one simple example ?? Thanks

Doubts in implementing MVP

2012-01-15 Thread Qrunk
Hi, I was reading through one of the earlier post and was unable to understand the following lines : Gal Dolber Post reply 12/07/2010 There no right or wrong way to implement MVP, its just a pattern and you can implement it as you like. The only points I think are important are: -

Re: Doubts in implementing MVP

2012-01-15 Thread Qrunk
Hi Thomas, As you asked, I went through the link( http://www.google.com/events/io/2010/sessions/gwt-continuous-build-testing.html ) but there it was a bit difficult for me to understand the basic reason as to *why* 1.* * we shouldn't use *view.getSaveButton().addClickHandler()* i.e to say

Doubts on Handling of events in Presenter

2012-01-15 Thread Qrunk
Hi Thomas, As you asked, I went through the link( http://www.google.com/events/io/2010/sessions/gwt-continuous-build-testing.html ) but there it was a bit difficult for me to understand the basic reason as to *why* 1.* *we shouldn't use *view.getSaveButton().addClickHandler()* i.e to say

MVP in terms of UI and View

2012-01-15 Thread Qrunk
What does the following mean ?? GOALS in GWT Develeopment We need dumb Views, not dumb UIs (What does View mean here and whats UI in MVP ?? its confusing, , please explain with a small example, a simple one) • Avoid state within Views (Which state is it talking about, please explain with a

Re: UI handling doubt in MVP

2012-01-14 Thread Qrunk
thanks for the prompt replies . I think I got the perfect answers -- 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/-/OBx_8uKSmc4J. To post to

Re: UI handling doubt in MVP

2012-01-14 Thread Qrunk
Hi, Using the Editor framework though blurs the line between presenter and view Can you please elaborate this and would be very useful if you do that using an example. Thanks -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this

UI handling doubt in MVP

2012-01-13 Thread Qrunk
Hi , Im a bit confused as in what does UI handling is meant in http://code.google.com/webtoolkit/articles/mvp-architecture.html, which is to be handled by the presenter. Say I have a case where when I change my combo box , I want a UI widget(Text Box ) to be disabled. Now here there are two