-
2 Aug 2010 4:36 AM #1
[FNR] TreePanel with checkboxes CheckChangedListener returns null
[FNR] TreePanel with checkboxes CheckChangedListener returns null
Hello.
I just updated to GXT 2.2 beta and I found a bug with TreePanel.
If I click on a checkbox the event is fired and event.getCheckedSelection always returns null.Code:TreePanel<BeanModel> tree= new TreePanel<BeanModel>(storeAtributes); tree.setDisplayProperty("name"); tree.setCheckable(true); tree.addCheckListener(new CheckChangedListener<BeanModel>() { public void checkChanged(CheckChangedEvent<BeanModel> event) { for (BeanModel bean : event.getCheckedSelection()) { // do something } });
This function was working perfectly before, but now it's not.
Thanks.
-
2 Aug 2010 4:56 AM #2
Fixed in SVN as of revision #2164
Thank you for reporting this bug. We will make it our priority to review this report.
Similar Threads
-
[FNR] RowEditor focuses even if startedit returns early
By PeterW in forum Ext GWT: Bugs (2.x)Replies: 1Last Post: 2 Mar 2010, 3:34 AM -
[OPEN] [FNR] Null Pointer Exception from QuickTips
By C. Cox in forum Ext GWT: Bugs (2.x)Replies: 1Last Post: 16 Sep 2009, 1:38 PM -
Ext.get('menuItem') returns null
By jcouture in forum Ext 2.x: Help & DiscussionReplies: 6Last Post: 12 May 2009, 12:41 PM -
[1.2.2] ComboBox getValue returns null
By mariusz.pala in forum Ext GWT: Bugs (1.x)Replies: 1Last Post: 4 Feb 2009, 12:25 AM -
findPanel always returns null
By seymores in forum Ext 1.x: Help & DiscussionReplies: 4Last Post: 19 Apr 2007, 6:06 PM


Reply With Quote