`
boogie
  • 浏览: 235963 次
  • 性别: Icon_minigender_1
  • 来自: 宁波
社区版块
存档分类
最新评论
文章列表
1、How to get the column width in a renderer function? http://extjs.com/forum/showthread.php?t=24137 2、 [AutoResize Issue] http://extjs.com/forum/showthread.php?t=24221 3、Colour Entire Rows http://extjs.com/forum/showthread.php?t=21973&highlight=Renderer 4、How to get the fields or id of grid ro ...
1、前后台所有文件统一用utf-8编码方式。2、在Request Headers中设置Content-Type:application/x-www-form-urlencoded; charset=utf-8,具体方法:将Ext.lib.Ajax.defaultPostHeader += '; charset=utf-8'加在Ext.onReady块里,此方法可以解决用EXT在POST时的中文乱码问题。3、在Response Headers中设置Content-Type:text/json;charset=utf-8,在JAVA中实现方法:response.setContentType(&qu ...
1、在相关表的映射XML文件的class项增加:dynamic-insert="true" 2、同时需在相关字段设置:not-null="false"
      在很多情况下,我们使用Hibernate在已经建立好数据库的基础上。在oracle中,如果已经建立好的数据库中使用了sequence,则可以按照下面的步骤把它引入到Hibernate中:       1、在oracle 首先创建sequence       create sequence seq_id       minvalue 1       start with 1       increment by 1       cache 20;    2.在你的hbm.xml中的配置         <id column="ID0000" name= ...
sudo apt-get install php5-gd sudo /etc/init.d/apache2 restart
1、安装JDK和Grails后,设置JAVA_HOME和GRAILS_HOME sudo gedit /etc/environment 加入以下:   1.  JAVA_HOME=/usr/lib/j2sdk15-sun    //JDK安装路经 2. GRAILS_HOME=/home/boogie/dev/grails   //GRails路径 3. PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:$GRAILS_HOME/bin&qu ...
1、查询当前用户下的所有表 select 'alter table  '|| table_name ||'  move tablespace tablespacename;'  from user_all_tables; 2、查询当前用户下的所有索引 select 'alter index '|| index_name ||' rebuild tablespace tablespacename;' from user_indexes; 3、在当前用户下将查询结果批处理执行即可!
Ctrl + Shift + O : Organize imports Ctrl + Shift + T : Open Type Ctrl + Shift + F4 : Close all Opened Editors Ctrl + O : Open declarations Ctrl + E : Open Editor Ctrl + / : Line Comment Alt + Shift + R : Rename Alt + Shift + L : extract to Local Variable Alt + Shi ...
修改deployerConfigContext.xml文件 xml 代码   <bean                       class="org.jasig.cas.authentication.principal.UsernamePasswordCredentialsToPrincipalResolver" >                       <property name="attributeRepository">                           & ...
http://www.51leifeng.net/index.php
1、http://www.jorendorff.com/articles/unicode/index.html 2、http://www.tbray.org/ongoing/When/200x/2003/04/26/UTF

jQuery知识点滴

    博客分类:
  • AJAX
4function FunkyStuff() { 5 $("dd label").append(":"); 6} 7 8 9$(document).ready(FunkyStuff); looks for every label within every “dd” in the page and adds a colon inside the label at the end
1、How to make sexy buttons with CSS
要使用 weblogic.jdbc.oci.Driver,请按如下所示设置环境。请注意,需要设置 jDriver 许可证。 将下列更改添加到 startWebLogic.cmd 文件。 指定 Oracle 的 bin 目录的路径和 WebLogic Oracle Oci 驱动程序本地库的 bin 目录的路径。请根据 Oracle 版本使用相应的 Oci 驱动程序。 对于 Oracle 8.1.7:%WL_HOME%\bin\oci817_8;d:\oracle\ora81\bin 对于 Oracle 9.0.1:%WL_HOME%\bin ...
1、Creating Ajax tabs in center region of BorderLayout( 03-29-2007, 04:14 PM)
Global site tag (gtag.js) - Google Analytics