亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? grids.js

?? 在流覽器上仿CS界面的JAVASCRIPT腳本
?? JS
?? 第 1 頁 / 共 5 頁
字號:
return;if(p._currentDragHeader)
this._resizeDir="";else if(e.getOffsetX()<=8&&ps)
this._resizeDir="w";else if(e.getOffsetX()+8>=this.getWidth())
this._resizeDir="e";else this._resizeDir="";if(this._resizeDir!=""){if((new BiBrowserCheck).getIe55())
this.setCursor("hand");else if((new BiBrowserCheck).getIe())
this.setCursor("col-resize");else this.setCursor("e-resize");}
else this.setCursor("");};function BiGridHeaderFiller(){BiGridHeader.call(this);};var _p=BiGridHeaderFiller.prototype=new BiGridHeader;_p._className="BiGridHeaderFiller";_p._sortable=false;_p._resizable=false;_p._movable=false;_p._normalBorder=new BiBorder(1,"solid","ThreeDShadow");_p._normalBorder.setTopColor("ThreeDHighlight");_p._normalBorder.setLeftColor("ThreeDHighlight");_p._normalBorder.setRightWidth(0);function BiGridHeaderCorner(){BiGridHeader.call(this);this.setLocation(0,0);this.setRight(null);this.setBottom(null);}
var _p=BiGridHeaderCorner.prototype=new BiGridHeader;_p._className="BiGridHeaderCorner";_p._sortable=false;_p._resizable=false;_p._movable=false;_p._normalBorder=new BiBorder(1,"solid","ThreeDShadow");_p._normalBorder.setTopColor("ThreeDHighlight");_p._normalBorder.setLeftColor("ThreeDHighlight");function BiGridRowHeaders(){BiComponent.call(this);this.setCssClassName("bi-grid-row-headers");}
var _p=BiGridRowHeaders.prototype=new BiComponent;_p._className="BiGridRowHeaders";_p._rowHeight=18;_p._setHeadersHtml=function(s){if(this.getCreated()){this._element.innerHTML=s+"<div class=\"bi-grid-row-header-filler\"></div>";}};function BiAbstractGrid(){BiComponent.call(this);this.setTabIndex(1);this.setHideFocus(true);this._rows=[];this._nodes=this._rows;this._gridElements={};this._columns=[];this._columnOrders=[];this._invertedColumnOrders=[];this._columnWidths=[];this._columnNames=[];this._columnAligns=[];this._columnSortTypes=[];this.setSize(300,300);}
var _p=BiAbstractGrid.prototype=new BiComponent;_p._className="BiAbstractGrid";_p._gridHeadersConstructor=BiGridHeaders;_p._gridColumnConstructor=BiGridColumn;_p._lastKeyPress=0;_p._accumulatedKeys="";_p._columnCount=0;_p._columns=null;_p._columnOrders=null;_p._invertedColumnOrders=null;_p._columnWidths=null;_p._columnNames=null;_p._columnAligns=null;_p._columnSortTypes=null;_p._iconColumn= -1;_p._showHeaders=true;_p._showRowHeaders=false;_p._liveResize=false;_p._sortColumn= -1;_p._ascending=null;_p._selectionModel=null;_p._allNodes=null;_p._gridCreated=false;_p._rowHeight=18;_p._fontSize=11;_p._rowHeadersWidth=30;_p._headersHeight=18;_p._overflowX="auto";_p._overflowY="auto";BiAbstractGrid.prototype.getColumns=function(){return this._columns;};BiAbstractGrid.prototype.getShowHeaders=function(){return this._showHeaders;};BiAbstractGrid.prototype.setShowHeaders=function(v){this._showHeaders=v;};BiAbstractGrid.prototype.getShowRowHeaders=function(){return this._showRowHeaders;};BiAbstractGrid.prototype.setShowRowHeaders=function(v){this._showRowHeaders=v;};BiAbstractGrid.prototype.getRowHeadersWidth=function(){return this._rowHeadersWidth;};BiAbstractGrid.prototype.setRowHeadersWidth=function(v){this._rowHeadersWidth=v;};BiAbstractGrid.prototype.getHeadersHeight=function(){return this._headersHeight;};BiAbstractGrid.prototype.setHeadersHeight=function(v){this._headersHeight=v;};BiAbstractGrid.prototype.getLiveResize=function(){return this._liveResize;};BiAbstractGrid.prototype.getSortColumn=function(){return this._sortColumn;};BiAbstractGrid.prototype.getAscending=function(){return this._ascending;};BiAbstractGrid.prototype.getSelectionModel=function(){return this._selectionModel;};BiAbstractGrid.prototype.getRowHeight=function(){return this._rowHeight;};BiAbstractGrid.prototype.setRowHeight=function(v){this._rowHeight=v;};BiAbstractGrid.prototype.getHeaders=function(){return this._headers;};_p._getFillerHeight=function(){return this._showHeaders?this._headersHeight:0;};_p._getFillerWidth=function(){return this._showRowHeaders?this._rowHeadersWidth:0;};_p.layoutAllChildren=function(){this._layoutHeadersX();this._layoutHeadersY();BiComponent.prototype.layoutAllChildren.call(this);};_p.layoutAllChildrenX=function(){this._layoutHeadersX();BiComponent.prototype.layoutAllChildrenX.call(this);};_p.layoutAllChildrenY=function(){this._layoutHeadersY();BiComponent.prototype.layoutAllChildrenY.call(this);};_p.setColumnCount=function(n){if(this._columnCount>n){for(var i=n;i<this._columnCount;i++){this._headers.remove(this._columns[i].getHeader());this._columns[i].dispose();}
this._columns=this._columns.slice(0,n);}
else{var c;for(var i=this._columnCount;i<n;i++){c=this._columns[i]=new this._gridColumnConstructor(this._columnNames[i]);c._columnIndex=i;c._orderIndex=i;c._grid=this;c.setAlign(this._columnAligns[i]);this._headers.add(c.getHeader());}
this.setColumnOrders(BiAbstractGrid._expandArray2(this._columnOrders,n,Number));this.setColumnWidths(BiAbstractGrid._expandArray(this._columnWidths,n,100,Number));this.setColumnNames(BiAbstractGrid._expandArray(this._columnNames,n,"Untitled",String));this.setColumnAligns(BiAbstractGrid._expandArray(this._columnAligns,n,"left",String));this.setColumnSortTypes(BiAbstractGrid._expandArray(this._columnSortTypes,n,"string",String));}
this._columnCount=n;this._headers.setColumnCount(n);};BiAbstractGrid._expandArray=function(a,n,v,f){for(var i=a.length;i<n;i++)
a[i]=f(v);return a;};BiAbstractGrid._expandArray2=function(a,n,f){for(var i=a.length;i<n;i++)
a[i]=f(i);return a;};BiAbstractGrid.prototype.getColumnCount=function(){return this._columnCount;};_p.setColumnWidths=function(aWidths){this._columnWidths=aWidths;for(var i=0;i<this._columnCount;i++){this._columns[i].setWidth(aWidths[i]);}
this._headers.setColumnWidths(aWidths);};BiAbstractGrid.prototype.getColumnWidths=function(){return this._columnWidths;};_p.getColumnWidth=function(x){return this._columns[x].getWidth();};_p.setColumnOrders=function(aOrderIndexes){this._columnOrders=aOrderIndexes;for(var i=0;i<this._columnCount;i++){this._columns[aOrderIndexes[i]]._orderIndex=i;}
this._invertedColumnOrders=new Array(aOrderIndexes.length);for(var i=0;i<aOrderIndexes.length;i++){this._invertedColumnOrders[aOrderIndexes[i]]=i;}
this._headers.setColumnOrders(aOrderIndexes);};BiAbstractGrid.prototype.getColumnOrders=function(){return this._columnOrders;};_p.getColumnOrder=function(x){return this._columns[x].getOrderIndex();};_p.setColumnAligns=function(aAligns){this._columnAligns=aAligns;for(var i=0;i<this._columnCount;i++){this._columns[i].setAlign(aAligns[i]);}};BiAbstractGrid.prototype.getColumnAligns=function(){return this._columnAligns;};_p.getColumnAlign=function(x){return this._columns[x].getAlign();};_p.setColumnNames=function(aNames){this._columnNames=aNames;for(var i=0;i<this._columnCount;i++){this._columns[i].setName(aNames[i]);}};BiAbstractGrid.prototype.getColumnNames=function(){return this._columnNames;};_p.getColumnName=function(x){return this._columns[x].getName();};_p.setColumnSortTypes=function(aSortTypes){this._columnSortTypes=aSortTypes;for(var i=0;i<this._columnCount;i++){this._columns[i].setSortType(aSortTypes[i]);}};BiAbstractGrid.prototype.getColumnSortTypes=function(){return this._columnSortTypes;};_p.getColumnSortType=function(x){return this._columns[x].getSortType();};BiAbstractGrid.prototype.getIconColumn=function(){return this._iconColumn;};_p.setIconColumn=function(n){if(this._columns[this._iconColumn])
this._columns[this._iconColumn]._iconColumn=false;this._iconColumn=n;if(this._columns[this._iconColumn])
this._columns[this._iconColumn]._iconColumn=true;};_p.setFitColumnWidths=function(b)
{this._headers.setFitColumnWidths(b);this.setOverflowX(b?"hidden":"auto");};_p.getFitColumnWidths=function()
{return this._headers.getFitColumnWidths();};_p.setLiveResize=function(b){if(this._liveResize!=b){if(b)
this._headers.addEventListener("columnwidthschanging",this.updateColumns,this);else this._headers.removeEventListener("columnwidthschanging",this.updateColumns,this);this._liveResize=b;}};_p.setShowHeaders=function(b){if(this._showHeaders!=b){this._showHeaders=b;this._headers.setVisible(b);if(this._headerCorner)
this._headerCorner.setVisible(this.getShowHeaders()&&this.getShowRowHeaders());if(this.getCreated())
this._gridBodyElement.style.paddingTop=this._getFillerHeight()+"px";if(this._rowHeaders)
{this._rowHeaders.setTop(this._getFillerHeight());this._updateRowHeadersHeight();}
if(b)
this.updateHeadersWidth();}};_p.setHeadersHeight=function(n)
{if(this._headersHeight!=n)
{this._headersHeight=n;this._headers.setHeight(n);if(this._headerCorner)
this._headerCorner.setHeight(n);if(this.getCreated())
this._gridBodyElement.style.paddingTop=this._getFillerHeight()+"px";if(this._rowHeaders)
{this._rowHeaders.setTop(this._getFillerHeight());this._updateRowHeadersHeight();}}};_p.update=function(){this.updateColumns();this.updateData();};_p.updateColumns=function(){if(this.getCreated()){this._removeStyleRules();var rs=this._getStyleRules();var l=rs.length;if(BiBrowserCheck.ie)
{for(var i=0;i<l;i++)
this._styleSheet.addRule(rs[i].selector,rs[i].style);}
else {for(var i=0;i<l;i++)
this._styleSheet.insertRule(rs[i].selector+"{"+rs[i].style+"}",this._styleSheet.cssRules.length);}
this.updateHeadersWidth();}};_p._removeStyleRules=function(){if(this._styleSheet)
{var rules;if(BiBrowserCheck.ie)
rules=this._styleSheet.rules;else rules=this._styleSheet.cssRules;var l=rules.length;var s="#"+this.getHtmlProperty("id");if(BiBrowserCheck.ie)
{for(var i=rules.length-1;i>=0;i--){if(rules[i].selectorText.indexOf(s)==0){this._styleSheet.removeRule(i);}}}
else {for(var i=rules.length-1;i>=0;i--){if(rules[i].selectorText.indexOf(s)==0){this._styleSheet.deleteRule(i);}}}}};_p.updateData=function(){if(this.getCreated()){this._clearCache();this._gridBodyElement.innerHTML=this.getGridBodyHtml();this.updateHeadersWidth();this._gridCreated=true;}};_p.updateHeadersWidth=function()
{if(this.getCreated()&&this._headers.getCreated())
{var oldWidth=this._headers.getWidth();var fw=this._getFillerWidth();var newWidth=this._gridBodyElement.clientWidth-fw;this._headers.setWidth(newWidth);this._headers.setLeft(this.getRightToLeft()?this._gridBodyElement.offsetWidth-this._gridBodyElement.clientWidth:fw);if(this._headerCorner)
{if(this.getRightToLeft())
this._headerCorner.setLeft(this._gridBodyElement.offsetWidth-fw);else this._headerCorner.setLeft(0);}
if(oldWidth==newWidth)
this._headers.layoutAllChildrenX();}};_p._updateHeadersWidth=function(){var t=new BiTimer(1);t.addEventListener("tick",function(e){t.stop();this.updateHeadersWidth();t.dispose();},this);t.start();};_p._create=function(oDoc){BiComponent.prototype._create.call(this,oDoc);this._styleSheet=BiAbstractGrid._styleSheet;if(!this._styleSheet){if(BiBrowserCheck.ie)
this._styleSheet=this._document.createStyleSheet();else {var el=this._document.createElement("STYLE");el.type="text/css";this._document.getElementsByTagName("HEAD")[0].appendChild(el);this._styleSheet=el.sheet;}
BiAbstractGrid._styleSheet=this._styleSheet;}
this._gridBodyElement=this._document.createElement("DIV");this._gridBodyElement.className="bi-grid-body";this._gridBodyElement._biComponent=this;this._gridBodyElement.onscroll=BiComponent.__oninlineevent;this._element.appendChild(this._gridBodyElement);if(this.getRightToLeft())
this._gridBodyElement.style.paddingRight=this._getFillerWidth()+"px";else this._gridBodyElement.style.paddingLeft=this._getFillerWidth()+"px";this._gridBodyElement.style.paddingTop=this._getFillerHeight()+"px";this._gridBodyElement.style.overflowX=this._overflowX;this._gridBodyElement.style.overflowY=this._overflowY;};_p.dispose=function(){if(this._disposed)return;this._removeStyleRules();BiComponent.prototype.dispose.call(this);this._selectionModel.dispose();this._selectionModel=null;for(var i=this._rows.length-1;i>=0;i--)
this._rows[i].dispose();this._clearCache();this._styleSheet=null
if(this._gridBodyElement)
{this._gridBodyElement._biComponent=null;this._gridBodyElement.onscroll=null;}
this._gridBodyElement=null;if(this._dataSource)
{this._dataSource.dispose();this._dataSource=null;}};_p._getAllNodes=function(){if(this._allNodes==null){this._allNodes={};var cs=this._rows;var l=cs.length;for(var i=0;i<l;i++)
cs[i]._getAllNodes(this._allNodes);}
return this._allNodes;};_p._getGridElement=function(oNode){if(!this._created)return null;var hc=oNode.toHashCode();if(!this._gridElements[hc])
{this._gridElements[hc]=this._document.getElementById(hc);}
return this._gridElements[hc];};_p._clearCache=function(){this._depth=null;this._allNodes=null;for(var hc in this._gridElements)
delete this._gridElements[hc];};_p.getGridBodyHtml=function(){var cs=this._rows;var l=cs.length;var sb=new Array(l);for(var i=0;i<l;i++)
sb[i]=cs[i].getHtml();return sb.join("");};_p.getSelectedNode=_p.getSelectedRow=function(){return this.getSelectedRows()[0];};_p.getSelectedNodes=_p.getSelectedRows=function(){return this._selectionModel.getSelectedItems();};_p.setMultipleSelection=function(b){this._selectionModel.setMultipleSelection(b);};_p.getMultipleSelection=function(){return this._selectionModel.getMultipleSelection();};_p.setSelectionModel=function(sm){if(this._selectionModel!=sm){if(this._selectionModel!=null)
this._selectionModel.deselectAll();this._selectionModel=sm;}};_p.findString=function(sText,nStartIndex){return this._findItem(sText,nStartIndex||0,"String");};_p.findStringExact=function(sText,nStartIndex){return this._findItem(sText,nStartIndex||0,"StringExact");};_p.setScrollLeft=function(n)
{if(this.getCreated())
{this._gridBodyElement.scrollLeft=n;if(BiBrowserCheck.moz)
this._headers.setScrollLeft(this.getScrollLeft());}};_p.getScrollLeft=function()
{if(this.getCreated())
return this._gridBodyElement.scrollLeft;};_p.setScrollTop=function(n){if(this.getCreated())

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩美女久久久| 精品奇米国产一区二区三区| 国产精品福利一区二区三区| 成人妖精视频yjsp地址| 最新欧美精品一区二区三区| 色综合天天在线| 爽好多水快深点欧美视频| 欧美电影在线免费观看| 麻豆成人免费电影| 久久精品欧美一区二区三区麻豆| 成人午夜av电影| 樱花影视一区二区| 欧美欧美午夜aⅴ在线观看| 日本sm残虐另类| 国产人久久人人人人爽| 色婷婷精品久久二区二区蜜臂av| 亚洲午夜久久久| 精品粉嫩aⅴ一区二区三区四区| 成人性生交大合| 亚洲va国产va欧美va观看| 日韩欧美亚洲国产另类| 成人白浆超碰人人人人| 亚洲不卡av一区二区三区| 精品国产网站在线观看| 99国产欧美另类久久久精品| 日韩国产欧美三级| 国产精品久久久久久久浪潮网站| 欧美色倩网站大全免费| 国产一区二区网址| 亚洲情趣在线观看| 欧美va天堂va视频va在线| 91在线无精精品入口| 美日韩一区二区| 亚洲人成在线观看一区二区| 日韩欧美国产电影| 色综合久久66| 国产电影精品久久禁18| 亚洲成a人v欧美综合天堂| 欧美韩国日本不卡| 欧美一区二区三区视频免费| 91猫先生在线| 国产成人av电影在线观看| 天天色天天操综合| 国产精品免费人成网站| 日韩欧美国产高清| 欧美人牲a欧美精品| 91亚洲精华国产精华精华液| 精东粉嫩av免费一区二区三区| 一区二区久久久久久| 欧美激情一区二区在线| 日韩免费观看高清完整版在线观看| 色欧美片视频在线观看在线视频| 国产精品一区免费视频| 蜜臀av性久久久久av蜜臀妖精| 亚洲综合色在线| 亚洲乱码国产乱码精品精98午夜| 国产视频一区在线观看| 日韩欧美一区二区久久婷婷| 欧美日精品一区视频| 色婷婷综合久久久久中文一区二区| 国产一区二区三区日韩| 久久99精品国产| 美女网站视频久久| 视频一区免费在线观看| 五月天激情小说综合| 一区二区成人在线视频| 亚洲免费在线看| 中文字幕乱码日本亚洲一区二区| 精品国产一二三| 精品国产髙清在线看国产毛片| 欧美天堂一区二区三区| 色爱区综合激月婷婷| 91啪亚洲精品| 欧洲亚洲精品在线| 色综合天天性综合| 色偷偷久久人人79超碰人人澡| 99久久99久久精品国产片果冻| 成人午夜伦理影院| 粉嫩aⅴ一区二区三区四区五区| 国产一区二区三区四| 国产福利一区二区三区视频| 国产精品一区二区久久精品爱涩| 国产又黄又大久久| 国产精品综合一区二区三区| 国产精品白丝jk白祙喷水网站| 国产乱人伦偷精品视频不卡| 国产高清精品在线| 91在线播放网址| 91福利区一区二区三区| 欧美日韩在线不卡| 日韩丝袜美女视频| 久久久久国产免费免费| 国产精品久久久久久久午夜片 | 一区二区三区中文免费| 亚洲靠逼com| 亚洲午夜精品一区二区三区他趣| 丝袜亚洲另类欧美| 久久国产三级精品| 国产91在线观看丝袜| 色综合久久久久综合体桃花网| 欧美日韩国产免费一区二区 | 亚洲一区在线播放| 午夜久久久久久久久| 欧美性三三影院| 成人综合日日夜夜| 色综合久久天天综合网| 777亚洲妇女| 国产欧美日韩在线| 一级精品视频在线观看宜春院| 亚洲成人手机在线| 久久99精品久久久| 99精品久久久久久| 欧美午夜影院一区| 久久人人超碰精品| 亚洲青青青在线视频| 日本vs亚洲vs韩国一区三区| 懂色av噜噜一区二区三区av| 日本国产一区二区| 欧美成va人片在线观看| 1000部国产精品成人观看| 国产91高潮流白浆在线麻豆 | 国产精品99久久久久久久女警 | 国产一区二区三区高清播放| 97久久精品人人做人人爽50路| 91麻豆精品91久久久久久清纯| 国产精品女人毛片| 日韩专区中文字幕一区二区| 成人app网站| 欧美xxxxxxxx| 亚洲国产精品天堂| 处破女av一区二区| 91精品国产综合久久香蕉麻豆| 国产精品久久久久久久久免费桃花| 日韩成人午夜电影| 色综合天天综合狠狠| 国产喂奶挤奶一区二区三区| 三级一区在线视频先锋| 成人av在线影院| 337p粉嫩大胆色噜噜噜噜亚洲| 亚洲宅男天堂在线观看无病毒| 国产精品1024| 精品国产乱码久久久久久老虎| 亚洲一区二区三区小说| 成人av动漫网站| 国产亚洲短视频| 精品亚洲porn| 日韩一卡二卡三卡国产欧美| 亚洲国产成人av网| 91丨九色丨黑人外教| 欧美国产97人人爽人人喊| 久99久精品视频免费观看| 色av成人天堂桃色av| 亚洲色图制服丝袜| 97精品久久久久中文字幕| 国产精品天美传媒沈樵| 国产精品99久| 国产日产欧美一区二区三区| 韩国精品在线观看| 精品国产乱子伦一区| 精品一区二区三区免费播放| 欧美一区二区三区视频在线| 日韩av在线发布| 日韩一区二区麻豆国产| 免费成人在线视频观看| 日韩视频一区二区在线观看| 日本不卡不码高清免费观看| 正在播放亚洲一区| 免费看黄色91| 欧美成人欧美edvon| 久久精品国产精品亚洲红杏| 精品久久久久久无| 国产在线看一区| 国产欧美综合色| 色综合天天综合网天天狠天天 | 一本色道a无线码一区v| 亚洲色图一区二区| 从欧美一区二区三区| 玉米视频成人免费看| 在线精品视频免费观看| 亚洲欧洲精品成人久久奇米网| 91亚洲精品一区二区乱码| 成人免费在线观看入口| 99热国产精品| 欧美日本一区二区| 久久国产麻豆精品| 日韩欧美一区二区不卡| 激情六月婷婷久久| 国产欧美日韩久久| 国产宾馆实践打屁股91| 国产欧美中文在线| 国产·精品毛片| 国产精品白丝在线| 色综合咪咪久久| 最新热久久免费视频| 欧美日韩在线三区| 亚洲中国最大av网站| 91精品欧美一区二区三区综合在| 免费观看一级特黄欧美大片| 亚洲精品一区二区在线观看| 国产99一区视频免费|