Re: CellTree: Changing the default no data message for empty nodes

2014-05-28 Thread bhargavi sarang
Hi Thomas
 I am using 2.5.1 GWT version. I would like to modify the Empty message in 
cell tree. If it has been fixed can you please let me know what the fix and 
how do I modify the hard-coded message. Any help will be greatly 
appreciated.

On Wednesday, 3 October 2012 22:19:53 UTC+5:30, Thomas Broyer wrote:



 On Wednesday, October 3, 2012 5:52:55 PM UTC+2, Marco wrote:

 There is already an open issue:

 http://code.google.com/p/google-web-toolkit/issues/detail?id=6868


 Which is actually fixed (will ship in 2.5.0-rc2) 


-- 
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 from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: CellTree: Changing the default no data message for empty nodes

2014-05-28 Thread Thomas Broyer


On Wednesday, May 28, 2014 3:30:42 PM UTC+2, bhargavi sarang wrote:

 Hi Thomas
  I am using 2.5.1 GWT version. I would like to modify the Empty message in 
 cell tree. If it has been fixed can you please let me know what the fix and 
 how do I modify the hard-coded message. Any help will be greatly 
 appreciated.


The issue links to the 
change: https://code.google.com/p/google-web-toolkit/source/detail?r=11095
There's a CellTree.CellTreeMessages interface with the constants. It's 
standard GWT I18N so you can provide translations the usual ways. You can 
also extend (or even implement) the interface and pass an instance to the 
CellTree constructor.

-- 
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 from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: CellTree: Changing the default no data message for empty nodes

2014-05-28 Thread bhargavi sarang
Thanks Thomas for the reply...

On Wednesday, 28 May 2014 20:52:00 UTC+5:30, Thomas Broyer wrote:



 On Wednesday, May 28, 2014 3:30:42 PM UTC+2, bhargavi sarang wrote:

 Hi Thomas
  I am using 2.5.1 GWT version. I would like to modify the Empty message 
 in cell tree. If it has been fixed can you please let me know what the fix 
 and how do I modify the hard-coded message. Any help will be greatly 
 appreciated.


 The issue links to the change: 
 https://code.google.com/p/google-web-toolkit/source/detail?r=11095
 There's a CellTree.CellTreeMessages interface with the constants. It's 
 standard GWT I18N so you can provide translations the usual ways. You can 
 also extend (or even implement) the interface and pass an instance to the 
 CellTree constructor.


-- 
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 from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: CellTree: Changing the default no data message for empty nodes

2012-10-03 Thread Marco
There is already an open issue:

http://code.google.com/p/google-web-toolkit/issues/detail?id=6868

-- 
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/-/K3zY1KvOeUsJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: CellTree: Changing the default no data message for empty nodes

2012-10-03 Thread Thomas Broyer


On Wednesday, October 3, 2012 5:52:55 PM UTC+2, Marco wrote:

 There is already an open issue:

 http://code.google.com/p/google-web-toolkit/issues/detail?id=6868


Which is actually fixed (will ship in 2.5.0-rc2) 

-- 
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/-/G0Ug6R2tP98J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: CellTree: Changing the default no data message for empty nodes

2012-10-02 Thread Patrick Tucker
It appears that there is not.
 
Pretty disappointing, I was hoping to use CellTree in my new project... 
thought in my case I do not want the message at all, which is also not 
possible.

On Tuesday, March 8, 2011 3:27:36 PM UTC-5, aarnott wrote:

 Is there a way with the CellTree to change the default no data 
 message when a tree node is empty? 

 Maybe I'm taking the wrong approach, but I am using an RPC to load the 
 children of a particular node once it is opened and when the loading 
 is happening, the node shows the no data message. I'd prefer to 
 change the message to something like Loading... :-). Otherwise, I 
 can always add a child cell that has the loading message and then 
 remove it when the real children are loaded, but that seems clunky. 

 --Andrew

-- 
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/-/TYnnKHCmKS4J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



CellTree: Changing the default no data message for empty nodes

2011-03-08 Thread aarnott
Is there a way with the CellTree to change the default no data
message when a tree node is empty?

Maybe I'm taking the wrong approach, but I am using an RPC to load the
children of a particular node once it is opened and when the loading
is happening, the node shows the no data message. I'd prefer to
change the message to something like Loading... :-). Otherwise, I
can always add a child cell that has the loading message and then
remove it when the real children are loaded, but that seems clunky.

--Andrew

-- 
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-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.