Re: Custom GWT CellTree To open its nodes on a click of the whole Text and not just a pointer(image) on to its left

2014-07-17 Thread ankur jain
Can you please suggest how to implement AonTreeNodeView class as it requires HasDataPresenter class in its constructor. Could you please share the code. It is used in CellTreeNodeView inside static class NodeCellList. On Wednesday, February 20, 2013 12:54:19 PM UTC+5:30, magesh kumar wrote:

Re: Custom GWT CellTree To open its nodes on a click of the whole Text and not just a pointer(image) on to its left

2013-07-22 Thread San Orange
you can use a custom cell (clickableTextCell, for example), get an index from context in onBrowserEvent and open the node manually -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails

Re: Custom GWT CellTree To open its nodes on a click of the whole Text and not just a pointer(image) on to its left

2013-03-07 Thread Tomek Kańka
W dniu środa, 20 lutego 2013 08:24:19 UTC+1 użytkownik magesh kumar napisał: Yea Sure There is a onBrowserEvent in the CellTree.. @Override public void onBrowserEvent(Event event) { ... } Just use the above one and you are right on the track. Sorry that i didn't

Re: Custom GWT CellTree To open its nodes on a click of the whole Text and not just a pointer(image) on to its left

2013-02-19 Thread membersound
You're always welcome to share your solution, at least hints for others searching later for those kind of issues. Am Dienstag, 19. Februar 2013 07:03:40 UTC+1 schrieb magesh kumar: Finally i managed to get a solution.. On Friday, 15 February 2013 04:46:33 UTC+5:30, Tomek Kańka wrote:

Re: Custom GWT CellTree To open its nodes on a click of the whole Text and not just a pointer(image) on to its left

2013-02-19 Thread magesh kumar
Yea Sure There is a onBrowserEvent in the CellTree.. @Override public void onBrowserEvent(Event event) { AonCellBasedWidgetImpl.get().onBrowserEvent(this, event); if (isRefreshing) { // Ignore spurious events (onblur) while replacing elements. return; }

Re: Custom GWT CellTree To open its nodes on a click of the whole Text and not just a pointer(image) on to its left

2013-02-18 Thread magesh kumar
Finally i managed to get a solution.. On Friday, 15 February 2013 04:46:33 UTC+5:30, Tomek Kańka wrote: Oh, there are two of us. I just asked the same question day ago:). My ideas: Should I use selectionModel for these items, and somehow find what node was selected (how?), or

Custom GWT CellTree To open its nodes on a click of the whole Text and not just a pointer(image) on to its left

2013-02-14 Thread magesh kumar
It would be really helpful if i get to know some tips on how to change the trigering mode to open a node in a GWT CellTree...Now by default its the image on the left of every root node is being used to trigger..I need it to trigger when some body clicks on the whole root node... Thanks in

Re: Custom GWT CellTree To open its nodes on a click of the whole Text and not just a pointer(image) on to its left

2013-02-14 Thread Tomek Kańka
Oh, there are two of us. I just asked the same question day ago:). My ideas: Should I use selectionModel for these items, and somehow find what node was selected (how?), or use CellPreviewEvent.Handlerhttp://../com/google/gwt/view/client/CellPreviewEvent.Handler.htmlin some mysterious way?