
Extjs
unixtux
这个作者很懒,什么都没留下…
展开
-
普通html页面form表单控件引用ExtJs form表单控件样式
ExtJs日期控件: [code="js"] //ExtJs代码 Ext.onReady(function() { // 使用表单提示 Ext.QuickTips.init(); Ext.form.Field.prototype.msgTarget = 'side';// 提示显示方式 // 日期 var _kssj = new Ext.form.DateF...原创 2012-08-01 12:18:58 · 331 阅读 · 0 评论 -
Extjs 日期控件扩展,只显示月份
//Extjs 引用 [code="js"] var rq_formPanel = new Ext.FormPanel({ border : false, hideLabel : true, autoWidth : true, height : 26, labelWidth : 35, style : { padding : '4 0 0 10'// 上 右 ...原创 2012-08-06 11:38:45 · 347 阅读 · 0 评论 -
Extjs 常用Combo组件
//数据源本地,下拉列表不分页 [code="js"] var status_store = new Ext.data.JsonStore({ autoLoad : true, fields:['id', 'text' ], data: [ {id:'1', text: '已审批'}, {id:'2', te...原创 2012-08-06 11:39:06 · 635 阅读 · 0 评论 -
Extjs Tree
[code="js"] Ext.QuickTips.init(); var root = new Ext.tree.AsyncTreeNode({ text : '我是根', expanded : true, children : [{ text : '关注人员管理', qtip : '关注人员', // 必须通过Ext.QuickTip...原创 2012-08-07 10:20:31 · 95 阅读 · 0 评论 -
Extjs Anchor布局
1.百分比(Percentage)定位 图1 [code="js"] Ext.onReady(function() { var panel_1 = new Ext.Panel({ title:'panel_1', anchor:'60% 50%', html:'(anchor:宽 高)'+ '(anchor:60% 50%)'+ '宽度...原创 2012-08-07 10:20:54 · 197 阅读 · 0 评论 -
[转]ext中store.load和store.reload的区别
作者:silence1214 来源:[url]http://blog.youkuaiyun.com/silence1214/article/details/6976673[/url] store load()和reload() load( Object options ) : Boolean 采用配置好的Reader格式去加载Record缓存,具体请求的任务由配置好的Proxy对象完成。 ...原创 2012-08-23 16:06:55 · 164 阅读 · 0 评论 -
Ext.grid.PivotGrid样式
Ext.grid.PivotGrid样式 [code="html"] table {border-collapse:collapse;} .font_style { font-family: "宋体"; font-size: 12px; } /*! * 报表左侧 */ .tjbb-left { ...原创 2012-08-29 17:33:22 · 323 阅读 · 0 评论 -
(转)Ext.XTemplate 模板一
原文:[url]http://www.cnblogs.com/lipan/archive/2011/12/12/2274740.html[/url] 即时执行任意的代码 在XTemplate中,{[ ... ]}范围内的内容会在模板作用域的范围下执行。这里有一些特殊的变量: values:当前作用域下的值。若想改变其中的值,你可以切换子模板的作用域。 parent:父级模板的对象 x...原创 2013-08-26 11:38:50 · 132 阅读 · 0 评论