views:

60

answers:

2

IS there any way to have scroll bar in a dijit.TitlePane

A: 

One way is to embed a DIV with a scrollbar:

<div dojoType=dijit.TitlePane ...>
      <div style="overflow: auto; height: 200px;>
          ...
      </div>
</div>
Bill Keese
This didn't work in Firefox with Dojo 1.5. See my answer below.
Tony Lenzi
A: 

I had some problems with @BillKeese's answer. However, all you need to do is set overflow to auto on the titlePane itself:

<div dojoType="dijit.TitlePane" style="width:100%; height:50%; overflow: auto">
    your content
</div>
Tony Lenzi