`
文章列表
/* 防止img过大撑开 */ img{ max-width:1002px;/* Other */ _width:expression((this.offsetWidth > 1002) ? "1002px" : this.offsetWidth+"px" );/* IE */ }
在使用String.replaceAll(regex,replacement)方法时,当replacement出现反斜杠\或美元符号$时会出现java.lang.IndexOutOfBoundsException No group的异常,查看api文档时说是可以用java.util.regex.Matcher.quoteReplacement(String s)先过滤,但是此方法是1.5才出现的,我现在用的是1.4版的,所以只有从1.5的源码中拷贝出来用了 /** * 由于String.replaceAll方法时如果替换字符中有\或$可能会出现indexOutOfBoundsEx ...

EXT CHANGELOG

3.2http://www.extjs.com/products/js/CHANGES_ext-3.2.0.html
http://www.litejava.com/?action=show&id=386 http://blog.csdn.net/ybygjy/archive/2010/01/19/5211544.aspx http://www.newxd.com/article.asp?id=4146 flexpaper pdfviewer http://flexpaper.devaldi.com/docs.html flash FlashVars的使用 http://www.riameeting.com/node/485 pdf转图片 https://pdf-renderer.dev.java.ne ...
在用Ext.Toolbar的时候,发现竟然没有remove方法,这样就删除不了item啦,加上下面两个方法. remove : function(comp, autoDestroy){ var c = this.getComponent(comp); if(c && this.fireEvent('beforeremove', this, c) !== false){ this.items.remove(c); delete c.ownerCt; if(aut ...
Ctrl+1 快速修复(最经典的快捷键,就不用多说了) Ctrl+D: 删除当前行 Ctrl+Alt+↓ 复制当前行到下一行(复制增加) Ctrl+Alt+↑ 复制当前行到上一行(复制增加) Alt+↓ 当前行和下面一行交互位置(特别实用,可以省去先剪切,再粘贴了) Alt+↑ 当前行和上面一行交互位置(同上) Alt+← 前一个编辑的页面 Alt+→ 下一个编辑的页面(当然是针对上面那条来说了) Alt+Enter 显示当前选择资源(工程,or 文件 or文件)的属性 Shift+Enter 在当前行的下一行插入空行(这时鼠标可以在当前行的任一位置,不一定是最后) S ...
/** * 将字符串或数字转换为指定精度的浮点数 * * @param F{String || * Number} 要转换的字符串或浮点数 * @param len{Integer} * 精度,默认小数点后两位 * @param returnNull{Boolean} * 当F为非数字字符串时,返回null或原字符串,默认返回原字符串 */ toFloat : function (F, len, returnNull) { len = le ...
panel.on('render',function(){ panel.el.dom.oncontextmenu = function(e){ window.event ? window.event.returnValue = false : e.preventDefault(); }; });
Ext 里的Ext.form.HtmlEditor里readOnly是无效的,俺的解决方法如下,希望对大家有用,另外有不同意见的或者更好的建议的可以提出来. Ext.override(Ext.form.HtmlEditor, { onResize : function(w, h){ Ext.form.HtmlEditor.superclass.onResize.apply(this, arguments); if(this.el && this.iframe){ if(typeof w = ...
[list] 到官网http://ibatis.apache.org/下载jpetstore5.0,解压到任意地方,我这里解压到D:\jpetstore 在myeclipse上新建一个web project,名为jpetstore 将解压出来后的web目录下的所有文件拷贝粘贴到新建项目的WebRoot下 将解压出来后的src目录下的所有文件拷贝粘贴到新建项目的src下 将解压出来后的目录下的所有文件拷贝粘贴到新建项目的WebRoot/WEB-INF/lib下 将相应的数据库驱动添加到WebRoot/WEB-INF/lib下 修改位于src/properties下的database.propert ...
<html> <head> <style> /* 静态 */ #ct1{ background:green; height:200px; width:200px; margin-bottom:10px; } #subCt1{ position:static; width:50%; height:50%; background:yellow; } /* 相对 */ #ct2{ background:green; height:200px; width:200px; marg ...
关于获取各种浏览器可见窗口大小的一点点研究 <script> function getInfo() { var s = ""; s += " 网页可见区域宽:"+ document.body.clientWidth; s += " 网页可见区域高:"+ document.body.clientHeight; s += " 网页可见区域宽:"+ document.body.offsetWidth + " (包括边线和滚动条的宽)"; ...
下载地址:[url] http://pinyin4j.sourceforge.net/[/url] Demo: package cn.astrocom.itv.vod.server.web.util; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import net.sourceforge.pinyin4j.PinyinHelper; import net.sourceforge.pinyin4j.format.HanyuPinyinCaseType; ...

ext TabPanel相关

在使用Ext.TabPanel时,经常会用到tabchange事件,但却发现第一次渲染的时候,这个事件执行了两次,原因是因为使用了activeItem而不是activeTab,把activeItem:0,换成activeTab:0 就没事了,具体的原因俺粗略的看了一下TabPanel的源码,没有在源文件中找到activeItem属性,因为忙,所以就没继续找,哪位知道的,回复一下!

extjs GridPanel 相关

var hmenu = this.grid.getView().hmenu;获得grid的列菜单以添加自己的菜单到列菜单上,比如添加自己的过滤器。 //添加一个带复选框的菜单到列菜单上 var hmenu = this.grid.getView().hmenu; hmenu.add(new Ext.menu.CheckItem({ text: this.menuFilterText, menu: new Ext.menu.Menu() }));
Global site tag (gtag.js) - Google Analytics