10 2013 档案

Extjs4.1.x 框架搭建 采用 Application 动态按需加载 MVC 各模块完美实现
摘要:摘自 : http://www.jb51.net/article/31928.htm 1 // 动态加载js模块,****重要 2 3 var application; 4 5 Ext.Loader.setConfig({ enabled: true }); 6 7 Ext.require([ 8 9 'Ext.app.Application',10 11 'Ext.app.Controller'12 13 ]);14 15 16 17 Ext.app.Controller.implement({18 19 //... 阅读全文

posted @ 2013-10-31 10:53 Livon 阅读(310) 评论(0) 推荐(0)

表:t_category - Oracle 11g 建表语句
摘要:1 /* 2 Navicat Oracle Data Transfer 3 Oracle Client Version : 10.2.0.5.0 4 5 Source Server : 3.42 Oracle11g 6 Source Server Version : 110200 7 Source Host : 192.168.3.42:1521 8 Source Schema : DBUSER 9 10 Target Server Type : ORACLE 11 Target Server Version :... 阅读全文

posted @ 2013-10-22 08:42 Livon 阅读(498) 评论(0) 推荐(0)

使用 Javascript 代码,增加 HTML 新元素(节点)
摘要:1 阅读全文

posted @ 2013-10-21 14:32 Livon 阅读(221) 评论(0) 推荐(0)

Kind Editor 笔记
摘要:软件版本:kindeditor-4.1.9初始化的参数配置: 1 2 <strong>HTML内容</strong> 3 4 5 6 7 上传的图片、文件,保留原有文件名:修改 upload_json.jsp 文件,找到String newFileName = df.format(new Date()) + "_" + new Random().nextInt(1000) + "." + fileExt;修改成String newFileName = df.format(new Date()) + 阅读全文

posted @ 2013-10-18 18:04 Livon 阅读(540) 评论(0) 推荐(0)

[ 摘 ] 对 js 运算符 “||” 和 “&&” 的总结
摘要:from :http://jianguang-qq.iteye.com/blog/462449部分内容节选整理如下:需求:成长速度为 >12 显示 4 个箭头 ;成长速度为 >10 显示 3 个箭头 ;成长速度为 >5 显示 2 个箭头 ;成长速度为 >0 显示 1 个箭头 ;成长速度为 12 && 4 ) || ( add_step > 10 && 3 ) || ( add_step > 5 && 2 ) || ( add_step > 0 && 1 ) || 0 ;代码:var att 阅读全文

posted @ 2013-10-09 09:58 Livon 阅读(282) 评论(0) 推荐(0)

导航