I have two side-by-side DIVs in a JSP. It works well, with one exception: I can't get the jQuery Dynatree to fill the lefthand DIV's horizontal space properly:

enter image description here

enter image description here

Here's the HTML:

<div id="sub-title">
   <div id="sub-left">
    <fieldset class="search-fields">
        <legend>Files Found</legend>
        <!-- Add a <div> element where the tree should appear: -->
        <div id="tree"> 
        </div>
      </fieldset>
   </div>
   <div id="sub-right">
     <fieldset class="search-fields">
        <legend id="selectedFileLegend">Selected File Contents</legend>
        <textarea name="fileContents" id="fileContents" rows="20" readonly="readonly" wrap='off'>
(select via tree on left)
        </textarea>
     </fieldset>
   </div>
   <div class="clear-both"></div>
</div>

and CSS:

#sub-left {
/*    background: #99FF99;  pale green */
/*    border:1px dashed; */
   float: left;
   width: 24%;
}
#sub-right {
/*    background: #FFCC99;  pale orange */
/*    border:1px dashed; */
   float: right;
   width: 73%;
}
#sub-title { 
    overflow:hidden; 
}
.clear-both {
   clear: both;
}

#tree {
  vertical-align: top;
  width: 250px;
}

I of course also use the dynatree CSS. Any idea what's wrong? Thanks for the help!

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Your #tree width is set to 250px;

#tree {
  vertical-align: top;
  width: 250px;
}

If you set it to 100% (or remove the width property altogether), it will fill its container (#sub-left).

This is also the reason why it extends out of the #sub-left container when you have shrunk the window (second image), as 250px becomes larger than 24% of the available size.

link|improve this answer
Argh - I looked at this so many times... OK - that got the Dynatree to fill the lefthand DIV, but: now the lefthand DIV overlaps the right (as in 2nd pic) all the time, unless I make the browser really wide. Could it be related to the overflow or clear? – Mark Jan 19 at 14:30
I'd suggest making a jsFiddle so myself and others can more easily debug -- it doesn't look like anything in that snippet would be causing that to happen. – chrisn Jan 19 at 14:38
Shared - here's the link: jsfiddle.net/marklorenz/jxnMY/2 – Mark Jan 19 at 15:23
Note - it only happen when the entries in the tree are wider than the space available with the current browser width. – Mark Jan 19 at 15:31
You can set a min-width on your sub-title container to avoid this -- again, if the size of the container is 100px, your tree is only going to be 24px wide (24%). The items in the tree are wider than the current allotted space. – chrisn Jan 20 at 13:33
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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