标签: ExtJs

3 篇文章

thumbnail
ExtJs 自动刷新grid中的某个列的值
获取到表格的数据源,然后定时请求后台获取新的数据,根据id找到对应的行,然后修改列的值 //获取grid 的数据源 var store = this.lookupReference('icwmInfoItems').store; setInterval(function (){ Ext.Ajax.reqParams('~/icwm/setup/ic…
Extjs定时刷新页面
直接上代码! formSelected: function (me, record) { console.log(record.data); var icwmStatusForm = this.lookup("icwmStatusForm"); icwmStatusForm.getForm().setValues({ "iiSn": record.…
thumbnail
ExtJs 文本框textfield 设置鼠标悬浮提示
做项目时需要用到提示,当做标题的话太长,不展示的话,客户有不清楚具体是什么作用,这个时候就需要提示了。 而ExtJs里又没有就像html里的title一样的属性,只能是监听了 listeners: { render: function(c) { Ext.QuickTips.register({ target: c.getEl(), text: '(…