带单位、验证码文本框

1 //带单位的文本框  
UnitField = Ext.extend(Ext.form.TextField, {
    /*单位说明文字*/
    unitText: '',
    onRender: function(ct, position) {
        UnitField.superclass.onRender.call(this, ct, position);
        this.unitEl = ct.createChild({ tag: 'span', html: this.unitText });
        this.unitEl.addClass('x-form-unit');
    },
    alignErrorIcon: function() {
        this.errorIcon.alignTo(this.unitEl, 'tl-tr', [2, 0]);
    }
});
Ext.reg('unitfield', UnitField);

 

2 //验证码文本框  
CodeField = Ext.extend(Ext.form.TextField, {
    /*获取验证码图片的后台Url*/
    codeUrl: Ext.BLANK_IMAGE_URL,
    /*是否自动加载验证码图片*/
    autoLoad: true,
    onRender: function(ct, position) {
        CodeField.superclass.onRender.call(this, ct, position);
        this.codeEl = ct.createChild({ tag: 'img', src: Ext.BLANK_IMAGE_URL });
        this.codeEl.addClass('x-form-code');
        this.codeEl.on('click', this.loadCodeImg, this);

        if (this.autoLoad) this.loadCodeImg();
    },
    alignErrorIcon: function() {
        this.errorIcon.alignTo(this.codeEl, 'tl-tr', [2, 0]);
    },
    /*加载验证码图片方法,加上随机数参数让图片刷新*/
    loadCodeImg: function() {
        this.codeEl.set({ src: this.codeUrl + '?id=' + Math.random() });
    }
});
Ext.reg('codefield', CodeField);

3 使用示例

items:[{xtype:'codefield',fieldLabel: '验证码',width:60,allowBlank:false,codeUrl:'http://localhost/cgi/getCheckCode.ashx'},  
{xtype:'unitfield',fieldLabel: '库存数量', unitText:'吨', width:60,allowBlank: false}]

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值