ExtJS
iteye_17749
这个作者很懒,什么都没留下…
展开
-
EditorGridPanel insert 到最后
var btn_addLayer = new Ext.Toolbar.Button({ text : '添加', iconCls : 'x-button-add', handler : function(){ var t = new Ext.data.Record({ layerPre : '', nextBi : '1', }); l...原创 2010-12-25 17:20:26 · 135 阅读 · 0 评论 -
Ext Form表单设置值
form.getForm().setValues({ fieldName : value }); 通过构建一个json对象,传递到setValues中 fieldName 为form表单元素的name属性 value为要设置的值原创 2010-12-25 17:21:43 · 900 阅读 · 0 评论 -
Ext分组Grid表头统计方案
var tmpFunction = Ext.grid.GroupingView.prototype.initTemplates; Ext.grid.GroupingView.prototype.initTemplates = function(){ tmpFunction.call(this); if(this.startGroup&&this.tplFu...原创 2010-12-25 17:23:51 · 233 阅读 · 0 评论 -
Ext禁止编辑HtmlEditor的方法
如果我们想要使用HtmlEditor只是用于显示数据时,需要禁止编辑Ext.form.HtmlEditor。 一般的做法都是通过设置readOnly : true 和disabled : true 但是你会发现,这样的做法根本不起作用。 这里我们需要重写HtmlEditor的disabled方法。 Ext.override(Ext.form.HtmlEditor, { ...原创 2010-12-25 17:25:47 · 543 阅读 · 0 评论 -
HtmlEditor保存到数据库的问题
{ xtype:'htmleditor', id:'bio', fieldLabel:'Biography', height:200, enableLinks :false, //这是把链接的按钮去掉. enableLists : f...原创 2010-12-25 17:27:02 · 458 阅读 · 0 评论