Ha... thought you would say that. I tried to follow the instructions on the toolbar example. Anyways, I figured it out. I had a div that contained the toolbar and other stuff. The toolbar div was at the top of all the other stuff. In ext 1.1 it would show at the top of the div. In ext 2 if feel to the bottom. The solution: Add another toolbar container div that just surrounds the toolbar. See code below for example...
EXTJS 1.1 Toolbar would show top 2.0 would show at bottom
Code:
<div id="container">
<div id="toolbar"></div>
<h2>Stuff</h2>
<br/>
<br/>
<br/>
<p>More Stuff</p>
</div
Fix
Code:
<div id="container">
<div id="toolbar-container">
<div id="toolbar"></div>
</div>
<h2>Stuff</h2>
<br/>
<br/>
<br/>
<p>More Stuff</p>
</div