一个不错的翻页组件

时间:2010-09-06 03:50:24
【文件属性】:

文件名称:一个不错的翻页组件

文件大小:12KB

文件格式:JS

更新时间:2010-09-06 03:50:24

ajax js

ajax 的一个翻页组件,支持排序
this.grid = new Page(10,"gridCon","page.grid");
this.grid.appendCol(new ArrayCol("编号",0,true));
this.grid.appendCol(new ArrayCol("标题",1,true));
this.grid.appendCol(new ArrayCol("来文单位",2,true));
this.grid.appendCol(new ArrayCol("来文字号",3,true));
this.grid.appendCol(new ArrayCol("收文日期",4,true));
this.grid.appendCol(new ArrayCol("承办单位",5,true));
this.grid.load = function(currentPage,pageSize){
var thisObj = this;
var ud = me.loadQueryObj();
InstructsAction.loadRecord(currentPage,pageSize,ud,function(data){
thisObj.loadReply(data);
}
);
};
this.grid.create();
this.grid.setNumBar("gridTools");


网友评论

  • 只有一个js文件,注释基本没有,新手比较难看懂