Ext.ux.form.SearchField 添加placeholder属性 2016年9月19日

效果如图:
搜索框
思路:
设置两个变量,存放input的Id和placeholder值,
根据id更新input的placeholder值。

inputId: '',
placeholder : '',

initComponent 函数最后添加

me.inputId = me.id+'-inputEl';

afterRender函数最后添加

if(this.placeholder){    document.getElementById(this.inputId).setAttribute('placeholder',this.placeholder);
}

使用方法

 xtype: 'searchfield',
 placeholder: '查找',
 store: Store

你可能感兴趣的:(Extjs,Extjs4,开发经验)