- 浏览: 1155405 次
- 性别:
- 来自: 北京
-
最新评论
-
a535114641:
LZ你好, 用了这个方法后子页面里的JS方法就全不能用了呀
页面局部刷新的两种方式:form+iframe 和 ajax -
di1984HIT:
学习了,真不错,做个记号啊
Machine Learning -
赵师傅临死前:
我一台老机器,myeclipse9 + FB3.5 可以正常使 ...
myeclipse 10 安装 flash builder 4.6 -
Wu_Jiang:
触发时间在将来的某个时间 但是第一次触发的时间超出了失效时间, ...
Based on configured schedule, the given trigger will never fire. -
cylove007:
找了好久,顶你
Editable Select 可编辑select
文章列表
http://www.blogjava.net/fanyingjie/archive/2008/03/26/188658.html
- 2009-11-06 19:55
- 浏览 963
- 评论(0)
发现项目中同时使用了 JS_1.6R2.jar 和 js.jar, 这两个jar中的class 完全冲突,都是关于org.mozilla.javascript.xxxx,删除js_1.6R2.jar,只保留Birt 自带的 js.jar, 故障排除。
http://www.blogjava.net/vcok/archive/2009/09/14/292744.html#295065
- 2009-11-03 19:56
- 浏览 2281
- 评论(0)
错误信息:
org.eclipse.birt.report.model.metadata.ChoicePropertyType validateXml
严重: Not found choice: any
或
org.eclipse.birt.report.model.metadata.ChoicePropertyType validateXml
SEVERE: Not allowed choice any
原因:
birt 2.3.1后,不允许.rptdesign文件中出现数据类型为any的data关联;而2.3.1之前的.rptdesign文件是允许的;所以在你升级 ...
- 2009-11-03 18:10
- 浏览 1895
- 评论(0)
http://www.iteye.com/topic/85622
- 2009-10-26 19:27
- 浏览 1105
- 评论(0)
http://blog.csdn.net/chenjianjx/archive/2007/02/27/1515888.aspx
目的在于:在系统启动时,spring不立即查找远程的服务Bean,而在请求该服务时查找
这是为了避免:如果系统启动时不能访问远程服务,系统就无法成功启动,以致崩溃
<bean id="xxxService"
class="org.codehaus.xfire.spring.remoting.XFireClientFactoryBean">
<property name="serv ...
- 2009-10-26 19:10
- 浏览 2404
- 评论(1)
启动Oracle的监听服务失败,报错为"本地计算机的 OracleOraDb10g_home1TNSListener服务启动后又停止了,一些服务自动停止,如果他们没什么可做的,例如“性能日志和警报服务”".
解释:主要是因为主机名或主机ip更换导致.
解决:更改[ORACLE_HOME]\NETWORK\ADMIN\listener.ora 中主机名或ip为当前
更改[ORACLE_HOME]\NETWORK\ADMIN\tnsnames.ora 中主机名或ip为当前
然后再起动服务就正常了.
- 2009-10-26 09:56
- 浏览 2405
- 评论(0)
To be a Great Programmer, you must admit that you are a Terrible Programmer
(想成为出色的程序员,你必须承认你是个糟糕的程序员)
然后他说,
"I am human, therefore I make mistakes. If I make mistakes, then I cannot assume that I will write code that has no mistakes. If I cannot write code that has no mistakes, then I must as ...
- 2009-10-24 11:05
- 浏览 1235
- 评论(0)
http://wister.iteye.com/blog/334562
http://pinyin4j.sourceforge.net/
- 2009-10-10 16:50
- 浏览 1562
- 评论(0)
http://blog.csdn.net/pathuang68/archive/2009/04/14/4074338.aspx
- 2009-10-07 15:45
- 浏览 1041
- 评论(0)
http://blog.csdn.net/pathuang68/archive/2009/04/14/4074367.aspx
- 2009-10-07 15:44
- 浏览 1329
- 评论(0)
http://midnightair.iteye.com/blog/287634
在ModalDialog中是不能用window.location.reload(true)来做模态对话框的刷新的;想要刷新该模态对话框,可以使用以下的变通方法:
引用
1:在showModalDialo窗口的<html>与<Head>之间加上<base target="_self"> ,使这个页面上链接都在本窗口中打开
2:在页面中加一个隐藏<a>标签,如:<a id="reload" href="" ...
配个bean,碰到个奇怪的问题:
引用
Caused by: org.springframework.beans.factory.BeanCurrentlyInCreationException: Error creating bean with name 'orderService': org.springframework.beans.factory.FactoryBeanNotInitializedException: FactoryBean is not fully initialized yet
at org.springframework.beans.factory.support ...
- 2009-09-21 19:27
- 浏览 3765
- 评论(0)
<input name="test" type="radio" id="r1">
<input name="test" type="radio" id="r2">
<input name="test" type="radio" id="r3">
<div name="myName" id="Div1"></div&g ...
- 2009-09-20 14:40
- 浏览 2828
- 评论(0)
mymsg=mymsg.replace(/<\/?.+?>/g,"");//html2txt 去掉html标记
mymsg=mymsg.replace(/\n|\r/g,""); //去掉换行