我想使用 ExtJS 以拆分方式为单个标签创建一个文本框。实际上我的要求是一个电话号码的标签,它需要一个文本框分成三个由“-”(连字符)分隔的框。应该如下。
电话号码:770-268-3320
将每个括号视为一个文本框。希望你明白我的要求是什么......提前致谢
Ext.onReady(function(){
Ext.create('Ext.form.Panel', {
//title: 'Simple Form',
bodyPadding: 5,
width: 400,
// The form will submit an AJAX request to this URL when submitted
url: 'save-form.php',
// Fields will be arranged vertically, stretched to full width
layout: 'anchor',
defaults: {
anchor: '100%'
},
// The fields
defaultType: 'textfield',
items: [{
fieldLabel: 'PhoneNumber',
name: 'phoneNumber',
allowBlank: false
},{
fieldLabel: 'CustomerName',
name: 'custCLLI',
allowBlank: false
}],
// Reset and Submit buttons
renderTo: Ext.getBody()
});
});
或者你可以在这里查看:http: //jsfiddle.net/jA8Qy/5/