0

我想使用 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/

4

1 回答 1

1

看到这个

希望这能满足您的要求。

于 2012-12-19T02:30:27.690 回答