2007-02-02から1日間の記事一覧

グリッド

var grid; function init(){ grid = new DataTable("grid"); } DataTable = function(id){ this.init(id); return this; } DataTable.prototype = { wrapper : null, table : null, header : null, tbody : null, lastSelected : null, selectedRows : [], i…