文章列表
Ext.data.DWRProxy = function(dwrCall, pagingAndSort){
Ext.data.DWRProxy.superclass.constructor.call(this);
this.dwrCall = dwrCall;
//this.args = args;
this.pagingAndSort = (pagingAndSort!=undefined ? pagingAndSort : true);
};
Ext.extend(Ext.data.DWRProxy, Ext.data.DataProxy, {
load : functi ...
- 2009-09-21 14:44
- 浏览 1436
- 评论(0)
//** Ext.ux.CenterWindowPlugin **//
Ext.ux.CenterWindowPlugin = function(){
this.init = function(win) {
Ext.EventManager.onWindowResize(function(){
win.center();
});
}
};
- 2009-08-21 13:25
- 浏览 2866
- 评论(0)
function Person() {
Person.prototype.show = function() {
alert("I'm a person.");
}
}
var p1 = new Person();
var p2 = new Person();
alert(p1.show == p2.show); // true
----------------------------------------------------------
在strut ...
- 2009-06-25 16:56
- 浏览 633
- 评论(0)
//创建临时表空间
create temporary tablespace test_temp
tempfile 'F:\oracle\product\10.2.0\oradata\test\test_temp1.dbf'
size 10m
autoextend on
next 10m maxsize 2048g
extent management local;
//创建数据表空间
create tablespace test_data
logging
datafile 'F:\oracle\product\10.2.0\oradata\test\test_data1.dbf'
siz ...
- 2009-05-08 14:30
- 浏览 1775
- 评论(0)