- 浏览: 235963 次
- 性别:
- 来自: 宁波
最新评论
-
wilesun:
很垃圾
用dojo的tree widget时处理json乱码 -
hellofuck:
有没有办法获得一组名字和id不同的一组checkbox呢?
转帖:获得一组checkbox的值 -
livingbody:
能否传一个list数据集合给报表?
从BIRT报表文件中获取其使用数据源的数据库连接信息 -
kunyu0000:
那位大虾说一下,你们有没有尝试过这个例子,我试过不行,调用以上 ...
在DWR中实现直接获取一个JAVA类的返回值的两种方法 -
volking:
...
设置正确的Content-Type以解决Ext的中文乱码问题
文章列表
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 ...
- 2008-01-26 15:25
- 浏览 3380
- 评论(0)
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 ...
- 2008-01-24 12:24
- 浏览 8120
- 评论(1)
1、在相关表的映射XML文件的class项增加:dynamic-insert="true"
2、同时需在相关字段设置:not-null="false"
- 2008-01-10 14:47
- 浏览 5009
- 评论(0)
在很多情况下,我们使用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= ...
- 2008-01-01 11:49
- 浏览 4260
- 评论(0)
sudo apt-get install php5-gd
sudo /etc/init.d/apache2 restart
- 2007-12-07 10:05
- 浏览 7147
- 评论(0)
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 ...
- 2007-11-22 11:52
- 浏览 3249
- 评论(0)
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 ...
- 2007-09-18 09:22
- 浏览 2901
- 评论(0)
修改deployerConfigContext.xml文件
xml 代码
<bean
class="org.jasig.cas.authentication.principal.UsernamePasswordCredentialsToPrincipalResolver" >
<property name="attributeRepository">
& ...
- 2007-08-22 17:45
- 浏览 3623
- 评论(0)
http://www.51leifeng.net/index.php
- 2007-05-21 16:43
- 浏览 5304
- 评论(1)
1、http://www.jorendorff.com/articles/unicode/index.html
2、http://www.tbray.org/ongoing/When/200x/2003/04/26/UTF
- 2007-05-11 15:36
- 浏览 3278
- 评论(0)
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
- 2007-05-11 10:39
- 浏览 3185
- 评论(0)
要使用 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 ...
- 2007-04-17 23:06
- 浏览 3949
- 评论(0)
1、Creating Ajax tabs in center region of BorderLayout( 03-29-2007, 04:14 PM)
- 2007-04-04 16:31
- 浏览 3088
- 评论(0)