Skip to main content



      Home
Home » Eclipse Projects » JFace » TreeViewer - set a default selection
TreeViewer - set a default selection [message #870060] Sun, 06 May 2012 00:28
Eclipse UserFriend
Hi All,

I am trying to create a default selection in my tree viewer. I inserted the following code in my createPartControl() function :

menuModel = new BuildMenuModel();
viewer.setInput(menuModel);

if (selectedItem == null ) {
menuList = menuModel.getMenulevels();
selectedItem = menuList.get(0);
ISelection sel = new StructuredSelection(selectedItem);
viewer.setSelection(sel,true);
}

I have followed the code in the debugger and verified that setSelection sets a data item and fires an event but nothing happens. It probably has something to do with timing as similar code works works just fine in my addSelectionChangedListener().

Any clues?
Previous Topic:TreeViewer - set a default selection
Next Topic:TreeViewer - set a default selection
Goto Forum:
  


Current Time: Sat Nov 01 13:41:07 EDT 2025

Powered by FUDForum. Page generated in 0.03109 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top