TuW
TuW

Reputation: 89

Non Collapsible TreePanel in GXT

I am new to GXT and need a little help in implementing a tree panel. User has a requirement that the TreePanel should not allowed to be collapsed and it should always remain expanded. (as in the image)enter image description here Is there a way we can achieve this ? May be using some other widget ?

Upvotes: 0

Views: 50

Answers (1)

Mike Voitenko
Mike Voitenko

Reputation: 133

For example, you can use on your tree addCollapseHandler() which will always call tree.setExpanded(true);

Upvotes: 1

Related Questions