Opened 13 years ago
Closed 13 years ago
#7249 closed defect (invalid)
BorderContainer: Toolbar with menu over bordercontainer with split panes appears to cause incorrect layout
Reported by: | dickb | Owned by: | |
---|---|---|---|
Priority: | high | Milestone: | tbd |
Component: | Dijit | Version: | 1.1.1 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
I've got a bordercontainer with a toolbar in the top and a pair of contentpanes with splitter below. I expect these to be laid out next to each other, but they sit one above the other. It the DropDownButton? plus menu is replaced with a plain button, the layout is as I expect.
Attachments (1)
Change History (3)
Changed 13 years ago by
comment:1 Changed 13 years ago by
Component: | General → Dijit |
---|---|
Owner: | anonymous deleted |
Summary: | Toolbar with menu over bordercontainer with split panes appears to cause incorrect layout → BorderContainer: Toolbar with menu over bordercontainer with split panes appears to cause incorrect layout |
comment:2 Changed 13 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
Try using firebug to look at the HTML tree generated (or even removing parsing and look at the source HTML tree). You'll see that the second and third content panes are inside the first one.
Problem is your <div />.
That's not valid HTML. (It is valid XHTML.)
Use <div></div> instead.
Note: See
TracTickets for help on using
tickets.
Hmm, just taking a glance at the HTML it seems OK, not sure why it's not working.