Hi, I have a ComboBoxItem which works as a search box where its picklist is, for now, items of a ColumnTree. On selecting one of the picklist's items which returns a ListGridRecord, I want to expand that specific node in the ColumnTree programmatically. Please note that I have also set ColumnTree.setShowMultipleColumns(false);
I also used the following code snippet, but no luck so far:
	I would appreciate any help :)
							
						
					I also used the following code snippet, but no luck so far:
Code:
	
	ListGridRecord record = searchBox.getSelectedRecord();
TreeNode node = tree.find("Name", record.getAttribute("Search"));
tree.openFolders(tree.getParents(node));

Comment