描述
Ext.form.Panel:Form面板为表单提供了一个标准容器,它本质上是一个标准的Ext.panel.Panel,它自动创建一个用于管理任何Ext.form.field.Field对象的BasicForm。
语法
这里是创建Ext.form.Panel容器的简单语法。
Ext.create('Ext.form.Panel', {
items: [child1, child2] // this way we can add differnt child elements to the container as container items.
});
例
下面是一个简单的例子显示Ext.form.Panel容器。
<!DOCTYPE HTML>
<html>
<head>
<link href="Https://cdnjs.cloudflare.com/ajax/libs/extjs/6.0.0/classic/theme-classic/resources/theme-classic-all.CSS" rel="stylesheet" />
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/extjs/6.0.0/ext-all.js"></script>
<script type="text/javascript">
Ext.onReady(function () {
var child1 = Ext.create('Ext.Panel',{
html: 'Text field'
});
var child2 = Ext.create('Ext.Panel',{
html: 'Text field'
});
Ext.create('Ext.form.Panel', {
renderTo: Ext.getBody(),
width: 100,
height : 100,
border : true,
frame : true,
layout: 'auto',// auto is one of the layout type.
items: [child1, child2]
});
});
</script>
</head>
<body>
</body>
</html>