up vote 0 down vote favorite
share [g+] share [fb]

I want to fully expand or restore a GWT HorizontalSplitPanel when the user double clicks in the panel thumb.

I was planning to extend the HorizonTalSplitPanel to add this behavior, but since it's a final class, it's not possible.

Does anybody knows a way to implement this behavior?

Thanks.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

I have implemented something similar to DLH's suggestion, details of which are here

It works great in IE, but I've been getting sporadic behaviour in Firefox.

link|improve this answer
Very nice article – jassuncao Dec 2 '09 at 18:31
feedback

Maybe you could create a class to wrap the HorizontalSplitPanel which would extend another panel (maybe a SimplePanel). The HorizontalSplitPanel would be a private field in the wrapper class.

Then you would add a DoubleClickHandler to the panel thumb which would call hSplitPanelObject.setSplitPosition(newPosition).

Does that seem workable?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.