I'm new to Ext JS. I have a problem with height of Ext.tabPanel. My Ext JS code: HTML Code:
<div id="TabPanel"></div>
<script type="text/javascript">
Ext.onReady(function () {
var ex2 = new Ext.TabPanel({plain: true,renderTo: TabPanel,
items: [{title: 'Tab 1',
html: '<div>Hello</div>'}
{title: 'Tab 2',html:'<div">Hello</div>'}]});})
</script>
How can I extend my tab panel on maximum height?