Login Register

issues rendering TitlePane inside BorderContainer1.1

Has anyone tried to render a TitlePane inside a BorderContainer. When I try to do so, TitlePane does not appear. Here is the code snippet that I tried. Is there an issue with BorderContainer?

<body>
        <div dojoType="dijit.layout.BorderContainer" design="sidebar"
                style="border: 2px solid black; padding: 10px;">

            <div dojoType="dijit.layout.ContentPane" region="top" style="background-color: white;">
                <div dojoType="dijit.TitlePane" title="A Message from Thurston Howell III">
                    The rain in Spain falls mainly on the New York Stock Exchange.
                </div>
            </div>     
        </div>
</body>