2012年11月14日
摘要: var window = Ext.create('Ext.window.Window', { title: windowTitle || '窗口', height: height || '80%', width: width || '80%', layout: 'fit', maximizable:true, items: item, shadow:false });最近使用EXTJS的过程,Ext.window.Window在IE下总出现奇怪的半透明现象,不是整个控件半透明,是控件右半部... 阅读全文
posted @ 2012-11-14 22:07 浩瀚孤鸿 阅读(244) 评论(0) 推荐(0) 编辑
摘要: listeners: { 'edit': function(editor, e) { var record = e.record; alert("id:" + record.get("id")); } }grid.on('edit', function(editor, e) { // commit the changes right after editing finished e.record.commit();}; 阅读全文
posted @ 2012-11-14 22:06 浩瀚孤鸿 阅读(1311) 评论(0) 推荐(0) 编辑
摘要: 方法:覆盖actioncolumn类,修改代码Ext.define('ActionTextColumn', { extend: 'Ext.grid.column.Action', alias: ['widget.actiontextcolumn'], constructor: function(config) { var me = this, cfg = Ext.apply({}, config), items = cfg.items || [me], l = items.length, ... 阅读全文
posted @ 2012-11-14 22:05 浩瀚孤鸿 阅读(2545) 评论(0) 推荐(0) 编辑
摘要: 【 概述 】在PHP开发中工作里非常多使用到超时处理到超时的场合,我说几个场景:1. 异步获取数据如果某个后端数据源获取不成功则跳过,不影响整个页面展现2. 为了保证Web服务器不会因为当个页面处理性能差而导致无法访问其他页面,则会对某些页面操作设置3. 对于某些上传或者不确定处理时间的场合,则需要对整个流程中所有超时设置为无限,否则任何一个环节设置不当,都会导致莫名执行中断4. 多个后端模块(MySQL、Memcached、HTTP接口),为了防止单个接口性能太差,导致整个前面获取数据太缓慢,影响页面打开速度,引起雪崩5. 很多需要超时的场合这些地方都需要考虑超时的设定,但是PHP中的超时都 阅读全文
posted @ 2012-11-14 20:04 浩瀚孤鸿 阅读(405) 评论(0) 推荐(0) 编辑
摘要: 在打开有radiogroup时,有时会需要被选中的值不是某个定值,而是根据某个变量可以变化的。这是radiogroup的代码: items: [{ xtype: 'radiogroup',id: 'myRadio',height: 60,items: [{ boxLabel: '经典蓝', name: 'changeTheme', inputValue: 'ext-all', width: 80 ,checked: true},{ boxLabel: '气质灰', name: 'change 阅读全文
posted @ 2012-11-14 19:46 浩瀚孤鸿 阅读(503) 评论(0) 推荐(0) 编辑