к размышлению...
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>demo</title>
<script type="text/javascript" src="http://docs.sencha.com/ext-js/4-1/extjs/ext-all.js"></script>
<link rel="stylesheet" href="http://docs.sencha.com/ext-js/4-1/resources/css/app-88de2e4b4aaefeb72bd4003a88ad5c26.css" type="text/css" />
<script type="text/javascript">
Ext.onReady(function() {
Ext.create('Ext.Panel', {
title: 'demo',
width: 200,
draggable: true,
resizable: true,
layout: 'anchor',
bodyPadding: '3 3 3 3',
defaults: {
anchor: '100%',
labelAlign: 'right',
labelWidth: 50
},
margin: '8 8 8 8',
renderTo: Ext.getBody(),
items: [{
fieldLabel: 'field1',
xtype: 'textfield'
}, {
fieldLabel: 'field1',
xtype: 'combo'
}]
});
});
</script>
</head>
<body>
</body>
</html>