- 浏览: 118120 次
- 性别:
- 来自: 广州
最新评论
-
niezhihong:
Java代码 Contact selContact = (C ...
liferay 日历使用 -
释皇天:
<script language="javas ...
js获得当前日期和昨天日期 -
释皇天:
火狐下可以不???貌似不可以。
js获得当前日期和昨天日期 -
plj123:
今天遇到这个问题了,用outerHTML会报未知运行时错误。 ...
js删除tr -
javaray:
遨豪(大连)科技有限公司自2007年与Liferay,Inc合 ...
liferay 中的经常使用的
文章列表
<script language="JavaScript">
//定义一个tick函数,以获取系统的时间
function tick()
{
var year,month,day,hours,minutes,seconds,ap;
var intYear,intMonth,intDay,intHours,intMinutes,intSeconds;
var today;
today=new Date();
intYear=today.getYear();
intMonth=today.getMonth()+1;
intDay=today.get ...
当从Action中返回到页面上的是xml文件时,需要我们对xml文件进行操作:
假如xml是:
<root>
<cunFleet>
<cunFleetID>2</cunFleetID>
<cunfleetName>elite002</cunfleetName>
</cunFleet>
</root>
页面中获得此xml后的操作:
function toXML(strxml){
try{
xmlDoc = new ActiveXObject(" ...
- 2009-06-12 12:35
- 浏览 1172
- 评论(0)
从获取的资料中发现有两种方式开发一个自己的portlet。目前,我们搭建了ext的开发环境,所以现在用的是ext的开发方式,对于另外一种开发方式未做实验。
下面是一个小例子:
我们新建的portlet都在ext这个目录下
其中ext-impl\src,ext-service\src是portal工程已经实现的所有portlet的java代码和部分资源文件.
ext-web目录是放置网页文件和portal的配置文件。
采用portal里面代码规范生成机制,对于持久化层和服务层的类都可以自动产生,方便,而且规范,这个应该可以提高开发效率。
在数据库里面新建一个表users,字段id,userNam ...
- 2009-06-11 15:07
- 浏览 1028
- 评论(0)
birt的下载和安装:
http://www.eclipse.org/downloads/download.php?file=/birt/downloads/drops/R-R1-2_3_0-200806191030/birt-report-designer-all-in-one-2_3_0.zip
上面的地址是 ,eclipse集成了birt报表功能,所以下载后可以直接使用,在eclipse中建立birt报表文件.rptdesign,就不细说了。
birt-runtime: 下载
http://www.eclipse.org/downloads/download.php?file=/birt ...
- 2009-06-10 17:15
- 浏览 2899
- 评论(0)
jQuery.ajax(
{url: '<%= themeDisplay.getPathMain() %>/trk',
data: { ID: Id },
success: displaySelect }
);
url:指定liferay中路径
data:是需要传递到action中的值
success:displaySelect 这个指定回调函数,即你自己写的js函数。
当然自己的Action类需要继承AjaxAction才可以使用。
Action中取值使用:
String ID = ParamUtil.getString(request, "ID") ...
- 2009-06-05 16:26
- 浏览 1971
- 评论(0)
public class RTFCreate {
public static void main(String[] args) throws MalformedURLException,
IOException {
RTFCreate rtfCreate = new RTFCreate();
try { String bodyText="abc";
//byte[] b= null;
//rtfCreate.createRTF(bodyText,"WebRoot/images/yjg.png");
// rtf ...
- 2009-06-05 16:18
- 浏览 1998
- 评论(0)
有初始值的 form 表单在点击默认的 Reset 按钮时,表单元素并不能清空,而是恢复初始值,相信这并不是我们期望的,本文介绍的是用 javascript 解决这一问题的方法
<form name="testForm">
<input type="button" value="Javascript Clear" onclick="clearForm('testForm')" />
</form>
function clearForm(formName) { ...
- 2009-06-05 16:17
- 浏览 1264
- 评论(0)
<html>
<body>
<script type="text/javascript" language="Javascript1.1">
<!--
function moveValueToLeft(oData,oPurpose,oFleet){
var arrSelValue = new Array();
var arrSelText = new Array();
var arrValueTextRelation = new Array();
var index = 0; ...
- 2009-06-05 16:11
- 浏览 853
- 评论(0)
function btnAdd_onclick()"
{
var opt=new Option('New York','1');
document.fm.citys.options[0]=opt;
}
<form id="fm" name="fm">
...
<select name="citys" id="citys">
删除select中的某一项option:
document.getElementById(&qu ...
- 2009-06-05 10:08
- 浏览 3460
- 评论(0)