随笔分类 -  EXTJS

extjs组件添加事件监听的三种方式
摘要:extjs对组件添加监听的三种方式 在定义组件的配置时设置如代码中所示: Java代码 xtype : 'textarea', name : 'dataSetField', labelSeparator:'', fieldLabel:'', hideLabel: true, allowBlank: true, height: mainPanelHeight*0.8, anchor:'99%'... 阅读全文
posted @ 2014-04-14 11:18 账号难注册 阅读(2969) 评论(0) 推荐(0) 编辑
Extjs4.1 注意事项
摘要:使用bodyStyle的时候需要在数字后加px bodyStyle: 'padding:20px 0px 0px 30px' 自定义tab的样式 可以在page中加入css定义,按照就近原则浏览器会先使用page中的css <style type="text/css"> /*去掉tab的 title的背景*/ .x-tab-bar { position: relative; backgr... 阅读全文
posted @ 2012-12-26 15:45 账号难注册 阅读(647) 评论(0) 推荐(0) 编辑
EXTJS Date 的转换格式化字符
摘要:Format Description Example returned values------ ----------------------------------------------------------------------- -------------... 阅读全文
posted @ 2012-12-25 10:20 账号难注册 阅读(1255) 评论(0) 推荐(0) 编辑
Extjs 4.1 学习笔记(二)(panel 自适应高度)
摘要:实际应用中如何将放在TabPanel中的panel(可以使任何panel的子类)适应TabPanel的高度和宽度我们可以考虑border布局var panel=Ext.create('Ext.panel.Panel', { itemId: 'pnl_vbox', region: 'center', layout: { type: 'vbox', align: 'stretch' }})Ext.create('Ext.panel.Table', { itemId: ‘id’, title: ‘test 阅读全文
posted @ 2012-11-29 10:21 账号难注册 阅读(2118) 评论(0) 推荐(0) 编辑
Extjs 4.1 学习笔记(一)(proxy,loader,treestore)
摘要:Ext.data.HttpProxy在Extjs 4中为Ext.data.proxy.Ajax,Ext.data.HttpProxy的用法在5.0后会取消将页面加载到panel中Ext.create('Ext.panel.Panel', {itemId: ‘itemid’,title: ‘title’,loader: { url: taget_url, autoLoad: true, scripts: true, params: { key: _trans.text }}参数params会post到页面在Extjs4.1中proxy需要使用post传参数的话如下:Ext.cre 阅读全文
posted @ 2012-11-27 12:49 账号难注册 阅读(3952) 评论(0) 推荐(0) 编辑