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

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

?? a573j198.js

?? ComponentArt Web.UI 2006.1252 for asp.net2.0
?? JS
?? 第 1 頁 / 共 3 頁
字號:
window.ComponentArt_Grid.prototype.Render=function(bSkipHeader){this.OldFrameHeight=this.qzmt?this.qzmt:-1;this.OuterFrameDomObj=document.getElementById(this.Id+'_table');this.FrameDomObj=document.getElementById(this.Id+'_dom');this.FooterDomObj=document.getElementById(this.Id+'_footer');this.HeaderDomObj=document.getElementById(this.Id+'_header');this.ScrollDomObj=document.getElementById(this.Id+'_scroll');var actualWidth=this.OuterFrameDomObj.offsetWidth;if(this.ScrollDomObj){this.ScrollDomObj.innerHTML='';};if(this.FillContainer&&this.OuterFrameDomObj){if(this.FrameDomObj)this.FrameDomObj.style.height='';var qzmt;if(this.OuterFrameDomObj.parentNode.style.height.indexOf('px')>0){qzmt=parseInt(this.OuterFrameDomObj.parentNode.style.height);}else{qzmt=this.OuterFrameDomObj.parentNode.offsetHeight;};var qzoz;if(this.OuterFrameDomObj.parentNode.style.width.indexOf('px')>0){qzoz=parseInt(this.OuterFrameDomObj.parentNode.style.width);}else{qzoz=this.OuterFrameDomObj.parentNode.offsetWidth;};qzoz=ComponentArt_GetAdjustedWidth(this.OuterFrameDomObj,qzoz);qzmt=ComponentArt_GetAdjustedHeight(this.OuterFrameDomObj,qzmt);if(qzoz>=0&&qzmt>=0){var widthDiff=qzoz-actualWidth;if(widthDiff!=0){this.RedistributeWidth(this.Levels[0],this.Levels[0].Table.Columns,this.Levels[0].Table.ColumnDisplayOrder,widthDiff,0);};this.OuterFrameDomObj.style.height=qzmt+'px';this.OuterFrameDomObj.style.width=qzoz+'px';this.ConstantWidth=this.OuterFrameDomObj.offsetWidth;this.qzmt=qzmt;this.qzoz=qzoz;};};this.StyleInfo=new Object();if(this.FillContainer&&this.AutoAdjustPageSize&&this.OldFrameHeight!=this.qzmt){var domObj=document.createElement('div');domObj.style.position='absolute';domObj.style.visibility='hidden';domObj.style.left='0px';domObj.style.top='0px';var qza=["<table cellpadding=0 cellspacing=0 border=0 cellspacing=\""+this.CellSpacing+"\"><tbody>"];this.RenderDataTable(qza,[],this.Table,0,1);qza[qza.length]='</tbody></table>';domObj.innerHTML=qza.join('');document.body.insertBefore(domObj,document.body.firstChild);var gridItemHeight=domObj.firstChild.firstChild.lastChild.offsetHeight,totalHeight=this.qzmt;if(this.FooterDomObj)totalHeight-=this.FooterDomObj.offsetHeight;if(this.HeaderDomObj)totalHeight-=this.HeaderDomObj.offsetHeight;totalHeight-=(domObj.firstChild.offsetHeight-gridItemHeight);qzff(domObj);var newPageSize=Math.floor(totalHeight/gridItemHeight);if(this.Levels.length>0&&this.Levels[0].NumGroupings>0){this.GroupingPageSize=newPageSize;}else{this.PageSize=newPageSize;};this.PageCount=Math.ceil(this.RecordCount/this.PageSize);var selectedItems=this.GetSelectedItems();if(selectedItems.length>0){this.CurrentPageIndex=selectedItems[selectedItems.length-1].PageIndex;}else{this.CurrentPageIndex=0;};};var pageSize=(this.Levels.length>0&&this.Levels[0].NumGroupings>0?this.GroupingPageSize:this.PageSize),iNumRows=this.Table.GetRowCount(),startRow=0;if(this.RunningMode==cart_grid_mode_client){if(this.RecordOffset>=0){startRow=this.RecordOffset;}else{startRow=this.CurrentPageIndex*pageSize;};if(startRow>=iNumRows)startRow=0;};if(this.Levels.length>0){var qza=["<table style=\"width:100%;\" cellpadding=\"0\" cellspacing=\""+this.CellSpacing+"\" border=\"0\"><tbody>"];this.RenderDataTable(qza,[],this.Table,startRow,pageSize);qza[qza.length]="</tbody></table>";if(this.AllowHorizontalScrolling&&cart_browser_ie){qza[qza.length]='<div style="height:16px;overflow:hidden;">&nbsp;</div>';};this.FrameDomObj.innerHTML=qza.join('');};if(this.NoRenderHeader){this.NoRenderHeader=false;bSkipHeader=true;};if(this.ShowHeader&&this.HeaderDomObj&&!bSkipHeader){this.RenderHeader(this.HeaderDomObj);};if(this.ShowFooter&&this.FooterDomObj){this.RenderFooter(this.FooterDomObj);};if(this.DomIdToExpand){var qg14=document.getElementById(this.DomIdToExpand);this.DomIdToExpand=null;ComponentArt_Grid_Expand(this,qg14);}else if(this.GroupToExpand){var qg14=document.getElementById(this.GroupToExpand);this.GroupToExpand=null;ComponentArt_Grid_ExpandGroup(this,qg14);};if(this.ScrollDomObj){this.RenderScroll(this.ScrollDomObj);};if(this.ShowSearchBox&&this.AutoFocusSearchBox){setTimeout(this.Id+'.FocusSearchField()',250);};};window.ComponentArt_Grid.prototype.RenderAddingRow=function(qza,arFamily,table){var qg21=this.Levels[table.Level],qzdm=qg21.SelectedRowCssClass;qza[qza.length]='<tr id="'+this.Id+'_addingRow"';if(qzdm){qza[qza.length]=" class=\""+qzdm+"\"";};qza[qza.length]=">";this.RenderColumnHeadingMargin(qza,arFamily,table);for(var qzAde=0;qzAde<table.ColumnDisplayOrder.length;qzAde++){var colNum=table.ColumnDisplayOrder[qzAde];qza[qza.length]='<td align="center"><input onsubmit="return false;" onkeypress="'+this.Id+'.AddRowKeyPress(event,this);" type="text" style="width:'+table.Columns[colNum].Width+'px;"></td>';};};window.ComponentArt_Grid.prototype.RenderColumnHeadings=function(qza,arFamily,table){var qg21=this.Levels[table.Level],qg7=false,sHeadingRowId=this.Id+'_'+(table.Path.length>0?table.Path.join('_'):'top')+'_head';qza[qza.length]="<tr id=\""+sHeadingRowId+"\"";if(qg21.HeadingRowCssClass){qza[qza.length]=" class=\""+qg21.HeadingRowCssClass+"\"";};qza[qza.length]=">";this.RenderColumnHeadingMargin(qza,arFamily,table);for(var qzba=0;qzba<table.ColumnDisplayOrder.length;qzba++){var colNum=table.ColumnDisplayOrder[qzba],qg15=table.Columns[colNum],cssClass=qg21.HeadingCellCssClass?qg21.HeadingCellCssClass:'';if(qg15.HeadingCellCssClass){cssClass+=" "+qg15.HeadingCellCssClass;};if(qg21.IndicatedSortColumn==qg15.ColumnNumber&&qg15.SortedHeadingCellCssClass){cssClass+=" "+qg15.SortedHeadingCellCssClass;};qg15.EffectiveCssClass=cssClass;var sortIcon=null;if(qg21.IndicatedSortColumn==qg15.ColumnNumber){if(qg21.IndicatedSortDirection==0){sortIcon=qg21.SortAscendingImageUrl;}else{sortIcon=qg21.SortDescendingImageUrl;};};qza[qza.length]="<td align=\""+qg15.Align+"\"";qza[qza.length]=" onclick=\""+this.Id+".ClickHandler(event,this,"+colNum+","+table.Level+")\"";qza[qza.length]=" ondblclick=\""+this.Id+".DblClickHandler(event,null,"+colNum+","+table.Level+")\"";qza[qza.length]=" onmousemove=\""+this.Id+".MoveHandler(event,this,"+qzba+","+table.Level+")\"";if(qg21.HeadingCellHoverCssClass){qza[qza.length]=" onmouseover=\""+this.Id+".OverHandler(event,this,"+table.Level+")\"";qza[qza.length]=" onmouseout=\""+this.Id+".OutHandler(event,this,"+table.Level+")\"";};qza[qza.length]=" onmousedown=\""+this.Id+".DownHandler(event,this,"+colNum+","+table.Level+")\"";qza[qza.length]=" onmouseup=\""+this.Id+".UpHandler(event,this,"+colNum+","+table.Level+")\"";if(qg15.Width>0){qza[qza.length]=" style=\"width:"+qg15.Width+"px;\"";}else{qg7=true;};if(cssClass){qza[qza.length]=" class=\""+cssClass+"\"";};qza[qza.length]="><div style=\"text-align:"+qg15.Align+";overflow:hidden;text-overflow:ellipsis;";if(qg15.Width>0){qza[qza.length]="width:"+qg15.Width+"px;";};qza[qza.length]="\">"+this.GetHeaderCellContent(qg21,qg15,sortIcon)+"</div></td>";};qza[qza.length]="</tr>";return qg7;};window.ComponentArt_Grid.prototype.RenderColumnHeadingMargin=function(qza,arFamily,table){var qg21=this.Levels[table.Level];for(var qzba=0;qzba<arFamily.length;qzba++){var ancestor=arFamily[qzba];this.RenderIndentCell(qza,!ancestor.LastInPage);if(ancestor.constructor==ComponentArt_GridItem&&this.Levels[ancestor.Level].ShowSelectorCells){this.RenderIndentCell(qza,false);};};for(var qzba=0;qzba<qg21.NumGroupings;qzba++){this.RenderIndentCell(qza,false);};if(this.SelfReferencing||this.Levels.length>1){qza[qza.length]="<td class=\""+qg21.HeadingSelectorCellCssClass+"\" width=\""+this.IndentCellWidth+"\"><div style=\"width:"+this.IndentCellWidth+"px;\">&nbsp;</div></td>";};if(qg21.ShowSelectorCells){qza[qza.length]="<td class=\""+qg21.HeadingSelectorCellCssClass+"\" width=\""+qg21.SelectorCellWidth+"\"><div style=\"width:"+qg21.SelectorCellWidth+"px;\">&nbsp;</div></td>";};};window.ComponentArt_Grid.prototype.RenderDataCell=function(qza,row,col){var level=row.Level,qg21=this.Levels[level],qg28=qg21.DataCellCssClass?qg21.DataCellCssClass:'',qg15=qg21.Table.Columns[col],qg12=row.Cells[col],qg30=row.qg10,bIsEditing=this.EditingId&&this.EditingId==row.ClientId;if(qg15.DataCellCssClass){qg28+=" "+qg15.DataCellCssClass;};if(qg15.SortedDataCellCssClass&&qg21.IndicatedSortColumn==col){qg28+=" "+qg15.SortedDataCellCssClass;};if(bIsEditing&&qg15.EditCellCssClass){qg28+=" "+qg15.EditCellCssClass;};qza[qza.length]="<td align=\""+qg15.Align+"\"";if(qg15.Width>0){qza[qza.length]=" style=\"width:"+qg15.Width+"px;\"";};qza[qza.length]=" onclick=\""+this.Id+".ClickHandler(event,this,"+col+","+level+")\"";qza[qza.length]=" ondblclick=\""+this.Id+".DblClickHandler(event,this,"+col+","+level+")\"";qza[qza.length]=" onmousedown=\""+this.Id+".DownHandler(event,this,"+col+","+level+")\"";qza[qza.length]=" onmouseup=\""+this.Id+".UpHandler(event,this,"+col+","+level+")\"";if(qg28){qza[qza.length]=" class=\""+qg28+"\"";};qza[qza.length]=">";var bRenderDiv=!qg15.TextWrap&&(!cart_browser_ie||!(bIsEditing&&qg15.AllowEditing));if(bRenderDiv){qza[qza.length]="<div style=\"padding:0px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;";if(qg15.Width>0){qza[qza.length]="width:"+qg15.Width+"px;";};qza[qza.length]="text-align:"+qg15.Align+";\">";};qza[qza.length]=this.GetCellContent(qg12,qg15);if(bRenderDiv){qza[qza.length]="</div>";};qza[qza.length]="</td>";};window.ComponentArt_Grid.prototype.RenderDataRow=function(qza,arFamily,table,row,path,bAlternating){var qg21=this.Levels[table.Level],qg30=path.join('_'),styleInfo=this.StyleInfo[row.qg10];if(!styleInfo){styleInfo=new Object();var bIsCustom=false;if(qg21.ConditionalFormats){for(var qzba=0;qzba<qg21.ConditionalFormats.length;qzba++){var sFilter=qg21.ConditionalFormats[qzba][0],DataItem=row;bIsCustom=eval(sFilter);if(bIsCustom){styleInfo.RowClass=qg21.ConditionalFormats[qzba][1];styleInfo.HoverRowClass=qg21.ConditionalFormats[qzba][2];styleInfo.SelectedRowClass=qg21.ConditionalFormats[qzba][3];styleInfo.SelectedHoverRowClass=qg21.ConditionalFormats[qzba][4];break;};};};if(!bIsCustom){styleInfo.RowClass=qg21.AlternatingRowCssClass&&bAlternating?qg21.AlternatingRowCssClass:qg21.RowCssClass;styleInfo.HoverRowClass=qg21.AlternatingHoverRowCssClass&&bAlternating?qg21.AlternatingHoverRowCssClass:qg21.HoverRowCssClass;styleInfo.SelectedRowClass=qg21.AlternatingSelectedRowCssClass&&bAlternating?qg21.AlternatingSelectedRowCssClass:qg21.SelectedRowCssClass;styleInfo.SelectedHoverRowClass=qg21.AlternatingSelectedHoverRowCssClass&&bAlternating?qg21.AlternatingSelectedHoverRowCssClass:qg21.SelectedHoverRowCssClass;};styleInfo.Selected=row.Selected;this.StyleInfo[row.qg10]=styleInfo;};var qzdm=row.Selected?styleInfo.SelectedRowClass:styleInfo.RowClass;qza[qza.length]="<tr";if(qzdm){qza[qza.length]=" class=\""+qzdm+"\"";};qza[qza.length]=" id=\""+this.Id+"_row_"+qg30+"\"";qza[qza.length]=" onmouseover=\""+this.Id+".OverHandler(event,this,"+table.Level+")\"";qza[qza.length]=" onmouseout=\""+this.Id+".OutHandler(event,this,"+table.Level+")\">";var totalCols=this.RenderMargin(qza,arFamily,table,row,qg30);for(var qzAde=0;qzAde<table.ColumnDisplayOrder.length;qzAde++){var colNum=table.ColumnDisplayOrder[qzAde];this.RenderDataCell(qza,row,colNum);totalCols++;};qza[qza.length]="</tr>";if(row.ChildTable){if(row.Expanded||this.ExpandingPath==qg30){var qg33=this.Id+"_stgroup_"+qg30;qza[qza.length]="<tr><td colspan=\""+totalCols+"\"><div id=\""+qg33+"\"";if(this.ExpandingPath==qg30){qza[qza.length]=" style=\"display:none;\"";this.DomIdToExpand=qg33;this.ExpandingPath=null;};qza[qza.length]="><table style=\"width:100%;\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tbody>";this.RenderDataTable(qza,arFamily.concat(row),row.ChildTable,0,row.ChildTable.GetRowCount());qza[qza.length]="</tbody></table></div></td></tr>";};};};window.ComponentArt_Grid.prototype.RenderDataTable=function(qza,arFamily,table,startRow,numRows){var qg21=this.Levels[table.Level];if(qg21.ShowTableHeading){this.RenderDataTableHeading(qza,arFamily,table);};if(qg21.ShowHeadingCells){qg21.NeedsColumnWidths=this.RenderColumnHeadings(qza,arFamily,table);};if(this.CallbackInProgress){if(this.LoadingPanelClientTemplateId){if(!this.LoadingPanelDomObj){var qzn=document.createElement('div');qzn.style.position='absolute';qzn.style.visibility='hidden';qzn.style.top='0px';qzn.style.left='0px';var qg34=this.GetClientTemplate(this.LoadingPanelClientTemplateId);if(qg34){qzn.innerHTML=ComponentArt_InstantiateClientTemplate(qg34,this,null);}else{qzn.innerHTML="Template not found: "+this.LoadingPanelClientTemplateId;};document.body.insertBefore(qzn,document.body.firstChild);var panelX=qzAfx(this.FrameDomObj)+this.LoadingPanelOffsetX,panelY=qzAfw(this.FrameDomObj)+this.LoadingPanelOffsetY;if(this.LoadingPanelPosition){var qzzu=this.FrameDomObj.offsetWidth-qzn.offsetWidth,qzxa=this.FrameDomObj.offsetHeight-qzn.offsetHeight;if(this.LoadingPanelPosition.toLowerCase().indexOf('right')>=0){panelX+=qzzu;}else if(this.LoadingPanelPosition.toLowerCase().indexOf('center')>=0){panelX+=Math.round(qzzu/2);};if(this.LoadingPanelPosition.toLowerCase().indexOf('bottom')>=0){panelY+=qzxa;}else if(this.LoadingPanelPosition.toLowerCase().indexOf('middle')>=0){panelY+=Math.round(qzxa/2);};};qzn.style.top=panelY+'px';qzn.style.left=panelX+'px';qzn.style.visibility='visible';this.LoadingPanelDomObj=qzn;};}else{qza[qza.length]='<tr><td colspan="199" height="20" align="center" valign="bottom" style="font-family:arial,verdana;font-size:11px;color:black;">Loading...</td></tr>';};return;};if(this.LoadingPanelDomObj){qzff(this.LoadingPanelDomObj);this.LoadingPanelDomObj=null;};if(table.AddingRow){this.RenderAddingRow(qza,arFamily,table);};if(this.EmptyGridText&&this.Data.length==0){qza[qza.length]='<tr><td colspan="199" height="20" align="center" valign="bottom" style="font-family:arial,verdana;font-size:11px;color:black;">'+this.EmptyGridText+' </td></tr>';return;};if(table.Level==0&&qg21.Groups&&qg21.Groups.length>0){var iGroups=0;for(var qzba=startRow;qzba<qg21.Groups.length&&iGroups<numRows;qzba++){var qg17=qg21.Groups[qzba];qg17.FirstInPage=(qzba==startRow);qg17.LastInPage=(qzba==qg21.Groups.length-1||iGroups==numRows-1);var curPath=[qzba];this.RenderGroup(qza,arFamily,qg17,curPath);iGroups++;};}else{var filteredRows=0,qg11=table.GetRowCount(),bIsAlternating=false,iRows=0;if(qg21.FilterExpression){for(var qzba=0;qzba<qg11&&filteredRows<startRow;qzba++){var DataItem=table.GetRow(qzba);bFilterOkay=eval(qg21.FilterExpression);if(bFilterOkay){filteredRows++;};};startRow=qzba;};for(var qzba=startRow;qzba<qg11&&iRows<numRows;qzba++){var qg24=table.GetRow(qzba),bFilterOkay=true;if(qg21.FilterExpression){var DataItem=qg24;bFilterOkay=eval(qg21.FilterExpression);};if(bFilterOkay){qg24.FirstInPage=(qzba==startRow);qg24.LastInPage=(qzba==qg11-1||iRows==numRows-1);this.RenderDataRow(qza,arFamily,table,qg24,qg24.Path,bIsAlternating);iRows++;table.NextToRender=(qzba+1);filteredRows++;bIsAlternating=!bIsAlternating;};};if(qg21.FilterExpression){for(var qzba=table.NextToRender;qzba<qg11;qzba++){var DataItem=qg21.Table.GetRow(qzba);bFilterOkay=eval(qg21.FilterExpression);if(bFilterOkay){filteredRows++;};};this.RecordCount=filteredRows;this.PageCount=Math.ceil(this.RecordCount/this.PageSize);};};};window.ComponentArt_Grid.prototype.RenderDataTableHeading=function(qza,arFamily,table){var qg21=this.Levels[table.Level];qza[qza.length]="<tr>";for(var qzba=0;qzba<arFamily.length;qzba++){var ancestor=arFamily[qzba];this.RenderIndentCell(qza,!ancestor.LastInPage);if(ancestor.constructor==ComponentArt_GridItem&&this.Levels[ancestor.Level].ShowSelectorCells){this.RenderIndentCell(qza,false);};};var colSpan=table.Columns.length+1;if(this.SelfReferencing||this.Levels.length>1){colSpan++;};qza[qza.length]="<td class=\""+qg21.TableHeadingCssClass+"\" colspan=\""+colSpan+"\">";if(qg21.TableHeadingClientTemplateId){var qg34=this.GetClientTemplate(qg21.TableHeadingClientTemplateId);if(qg34){qza[qza.length]=ComponentArt_InstantiateClientTemplate(qg34,this,table);}else{qza[qza.length]="Template not found: "+qg21.TableHeadingClientTemplateId;};}else{qza[qza.length]=table.TableName;};qza[qza.length]="</td></tr>";};window.ComponentArt_Grid.prototype.RenderExpandCollapseCell=function(qza,row,qzgu,qzhb,bInnerOnly,bIsGroup){var qg30=row.qg10,qzAeb=this.Id+(bIsGroup?"_expcolgrp_":"_expcol_")+qg30,expColMethod=bIsGroup?"ToggleGroupExpand":"ToggleExpand",bIsFirstInGroup=(row.Level==0&&row.qg10%this.PageSize==0);if(!bInnerOnly){qza[qza.length]="<td";if(this.IndentCellCssClass){qza[qza.length]=" class=\""+this.IndentCellCssClass+"\"";};qza[qza.length]=" id=\""+qzAeb+"\" align=\"center\" width=\""+this.IndentCellWidth+"\">";};if(qzgu||(!this.PreloadLevels&&(this.SelfReferencing||row.Level<this.Levels.length-1))){var qzoi="",qzoh="",qzzu=-1,qzxa=-1;if(this.TreeLineImagesFolderUrl){if(this.TreeLineImageHeight>0)qzxa=this.TreeLineImageHeight;if(this.TreeLineImageWidth>0)qzzu=this.TreeLineImageWidth;if(row.Level==0){if(bIsFirstInGroup){if(qzhb){qzoh=this.TreeLineImagesFolderUrl+"dashminus.gif";qzoi=this.TreeLineImagesFolderUrl+"dashplus.gif";}else{qzoh=this.TreeLineImagesFolderUrl+"rminus.gif";qzoi=this.TreeLineImagesFolderUrl+"rplus.gif";};}else if(qzhb){qzoh=this.TreeLineImagesFolderUrl+"lminus.gif";qzoi=this.TreeLineImagesFolderUrl+"lplus.gif";}else{qzoh=this.TreeLineImagesFolderUrl+"tminus.gif";qzoi=this.TreeLineImagesFolderUrl+"tplus.gif";};}else{if(qzhb){qzoh=this.TreeLineImagesFolderUrl+"lminus.gif";qzoi=this.TreeLineImagesFolderUrl+"lplus.gif";}else{qzoh=this.TreeLineImagesFolderUrl+"tminus.gif";qzoi=this.TreeLineImagesFolderUrl+"tplus.gif";};};}else{if(this.ExpandCollapseImageHeight>0)qzxa=this.ExpandCollapseImageHeight;if(this.ExpandCollapseImageWidth>0)qzzu=this.ExpandCollapseImageWidth;qzoh=this.CollapseImageUrl;qzoi=this.ExpandImageUrl;};if(qzoh&&qzoi){qza[qza.length]="<img alt=\"\" onclick=\""+this.Id+"."+expColMethod+"(event,this,'"+qg30+"')\"";if(qzxa>0){qza[qza.length]=" height=\""+qzxa+"\"";};if(qzzu>0){qza[qza.length]=" width=\""+qzzu+"\"";};if(row.Expanded||row.Expanding){qza[qza.length]=" style=\"display:none;\"";}else{qza[qza.length]=" style=\"display:block;\"";};qza[qza.length]=" src=\""+qzoi+"\" />";qza[qza.length]="<img alt=\"\" onclick=\""+this.Id+"."+expColMethod+"(event,this,'"+qg30+"')\"";if(qzxa>0){qza[qza.length]=" height=\""+qzxa+"\"";};if(qzzu>0){qza[qza.length]=" width=\""+qzzu+"\"";};if(!row.Expanded&&!row.Expanding){qza[qza.length]=" style=\"display:none;\"";}else{qza[qza.length]=" style=\"display:block;\"";};qza[qza.length]=" src=\""+qzoh+"\" />";};}else{if(this.TreeLineImagesFolderUrl){qza[qza.length]="<img alt=\"\" style=\"display:block;\"";if(this.TreeLineImageHeight>0)qza[qza.length]=" height=\""+this.TreeLineImageHeight+"\"";if(this.TreeLineImageWidth>0)qza[qza.length]=" width=\""+this.TreeLineImageWidth+"\"";if(row.Level==0){if(row.qg10=='0'){if(qzhb){qza[qza.length]=" src=\""+this.TreeLineImagesFolderUrl+"dash.gif\"";}else{qza[qza.length]=" src=\""+this.TreeLineImagesFolderUrl+"r.gif\"";};}else if(qzhb){qza[qza.length]=" src=\""+this.TreeLineImagesFolderUrl+"l.gif\"";}else{qza[qza.length]=" src=\""+this.TreeLineImagesFolderUrl+"t.gif\"";};}else{if(qzhb){qza[qza.length]=" src=\""+this.TreeLineImagesFolderUrl+"l.gif\"";}else{qza[qza.length]=" src=\""+this.TreeLineImagesFolderUrl+"t.gif\"";};};qza[qza.length]=" />";}else if(this.NoExpandImageUrl){qza[qza.length]="<img alt=\"\" style=\"display:block;\"";if(this.ExpandCollapseImageHeight>0)qza[qza.length]=" height=\""+this.ExpandCollapseImageHeight+"\"";if(this.ExpandCollapseImageWidth>0)qza[qza.length]=" width=\""+this.ExpandCollapseImageWidth+"\"";qza[qza.length]=" src=\""+this.NoExpandImageUrl+"\" />";}else{};};if(!bInnerOnly){qza[qza.length]="</td>";};};window.ComponentArt_Grid.prototype.RenderElement=function(qza,position){if(this.PagerPosition==position){this.RenderPager(qza);}else if(this.GroupingNotificationPosition==position){this.RenderGroupingNotification(qza);}else if(this.PagerInfoPosition==position){this.RenderPagerInfo(qza);}else if(this.SearchBoxPosition==position&&this.ShowSearchBox){this.RenderSearchBox(qza);};};window.ComponentArt_Grid.prototype.RenderFooter=function(domObj){var qza=['<table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td nowrap align="left">'];this.RenderElement(qza,'bottomleft');qza[qza.length]='</td><td nowrap align="right">';this.RenderElement(qza,'bottomright');qza[qza.length]='</td></tr></table>';domObj.innerHTML=qza.join('');};window.ComponentArt_Grid.prototype.RenderGroup=function(qza,arFamily,group,path){var qg21=this.Levels[group.Level],qg30=path.join('_');qza[qza.length]="<tr>";group.qg10=qg30;this.RenderExpandCollapseCell(qza,group,true,group.LastInPage,false,true);var colSpan=this.Table.Columns.length+qg21.NumGroupings;qza[qza.length]="<td class=\""+qg21.GroupHeadingCssClass+"\" colspan=\""+colSpan+"\">";if(qg21.GroupHeadingClientTemplateId){var qg34=this.GetClientTemplate(qg21.GroupHeadingClientTemplateId);if(qg34){var sContent=ComponentArt_InstantiateClientTemplate(qg34,this,group);if(sContent){qza[qza.length]=sContent;};};}else{qza[qza.length]=this.Table.Columns[group.Column].HeadingText+" : "+group.ColumnValue;};qza[qza.length]="</td>";qza[qza.length]="</tr>";if(group.Expanded||group.Expanding){var sGroupDomId=this.Id+"_group_"+qg30;qza[qza.length]="</tbody><tbody";if(group.Expanding){if(cart_browser_ie){qza[qza.length]=" style=\"visibility:hidden;\"";}else{qza[qza.length]=" style=\"display:none;\"";};};qza[qza.length]=" id=\""+sGroupDomId+"\">";if(group.Groups&&group.Groups.length>0){for(var qzba=0;qzba<group.Groups.length;qzba++){var qg17=group.Groups[qzba];qg17.FirstInPage=(qzba==0);qg17.LastInPage=(qzba==group.Groups.length-1);var curPath=path.concat(qzba);this.RenderGroup(qza,arFamily.concat(group),qg17,curPath);};}else{for(var qzba=0;qzba<group.Rows.length;qzba++){var qg24=this.Table.GetRow(group.Rows[qzba]);qg24.LastInPage=(qzba==group.Rows.length-1);qg24.FirstInPage=(qzba==0);this.RenderDataRow(qza,arFamily.concat(group),this.Table,qg24,qg24.Path,(qzba%2==0));};};qza[qza.length]="</tbody>";if(group.Expanding){if(cart_browser_ie){this.GroupToExpand=sGroupDomId;}else{this.DomIdToExpand=sGroupDomId;};group.Expanding=false;group.Expanded=true;};if(this.GroupToExpand){qza[qza.length]="<tbody style=\"display:none;\">";}else{qza[qza.length]="<tbody>";};};};window.ComponentArt_Grid.prototype.RenderGroupingNotification=function(qza){qza[qza.length]='<div';if(this.GroupingNotificationTextCssClass){qza[qza.length]=' class="'+this.GroupingNotificationTextCssClass+'"';};qza[qza.length]='>';if(this.Groupings&&this.Groupings.length>0&&this.Levels[0].Groups&&this.Levels[0].Groups.length>0){var col=this.Levels[0].Groups[0].Column,imgSrc;if(this.Groupings[0].indexOf(' 0')>0&&this.GroupBySortAscendingImageUrl){imgSrc=this.GroupBySortAscendingImageUrl;}else if(this.Groupings[0].indexOf(' 1')>0&&this.GroupBySortDescendingImageUrl){imgSrc=this.GroupBySortDescendingImageUrl;};var imgSize='';if(imgSrc){if(this.GroupBySortImageHeight>0){imgSize+=" height=\""+this.GroupBySortImageHeight+"\"";};if(this.GroupBySortImageWidth>0){imgSize+=" width=\""+this.GroupBySortImageWidth+"\"";};};var displayCol=0;while(this.Levels[0].Table.ColumnDisplayOrder[displayCol]!=col){displayCol++;};qza[qza.length]='<table cellspacing="0" cellpadding="0" border="0" onclick="'+this.Id+'.GroupClickHandler(event,this,'+col+');" onmousedown="'+this.Id+'.GroupDownHandler(event,this,'+displayCol+');"';if(this.GroupByCssClass){qza[qza.length]=' class="'+this.GroupByCssClass+'"';};qza[qza.length]='><tr><td';if(this.GroupByTextCssClass){qza[qza.length]=' class="'+this.GroupByTextCssClass+'"';};qza[qza.length]='>';if(this.GroupByClientTemplateId){var qg34=this.GetClientTemplate(this.GroupByClientTemplateId);if(qg34){qza[qza.length]=ComponentArt_InstantiateClientTemplate(qg34,this,this.Levels[0].Table.Columns[col]);}else{qza[qza.length]="Template not found: "+this.GroupByClientTemplateId;};}else{qza[qza.length]='Group by: '+this.Levels[0].Table.Columns[col].HeadingText;};if(imgSrc){qza[qza.length]='</td><td><img alt="" src="'+imgSrc+'"'+imgSize+' />';};qza[qza.length]="</td></tr></table>";}else{qza[qza.length]=this.GroupingNotificationText;};qza[qza.length]='</div>';};window.ComponentArt_Grid.prototype.RenderHeader=function(domObj){var qza=['<table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td nowrap align="left">'];this.RenderElement(qza,'topleft');qza[qza.length]='</td><td nowrap align="right">';this.RenderElement(qza,'topright');qza[qza.length]='</td></tr></table>';domObj.innerHTML=qza.join('');};window.ComponentArt_Grid.prototype.RenderIndentCell=function(qza,bConsiderLines){qza[qza.length]="<td";if(this.IndentCellCssClass){qza[qza.length]=" class=\""+this.IndentCellCssClass+"\"";};qza[qza.length]=" width=\""+this.IndentCellWidth+"\"><div style=\"width:"+this.IndentCellWidth+"px;\">";if(bConsiderLines&&this.TreeLineImagesFolderUrl){qza[qza.length]="<img border=\"0\" alt=\"\"";if(this.TreeLineImageHeight>0){qza[qza.length]=" height=\""+this.TreeLineImageHeight+"\"";};if(this.TreeLineImageWidth>0){qza[qza.length]=" width=\""+this.TreeLineImageWidth+"\"";};qza[qza.length]=" src=\""+this.TreeLineImagesFolderUrl+"i.gif\" />";};qza[qza.length]="</div>";qza[qza.length]="</td>";};window.ComponentArt_Grid.prototype.RenderMargin=function(qza,arFamily,table,row,qg30){var qg21=this.Levels[table.Level],totalCols=1;for(var qzba=0;qzba<arFamily.length;qzba++){var ancestor=arFamily[qzba];this.RenderIndentCell(qza,!ancestor.LastInPage);totalCols++;if(ancestor.constructor==ComponentArt_GridItem&&this.Levels[ancestor.Level].ShowSelectorCells){this.RenderIndentCell(qza,false);totalCols++;};};if(this.SelfReferencing||this.Levels.length>1){this.RenderExpandCollapseCell(qza,row,row.ChildTable,row.LastInPage,false);totalCols++;};if(qg21.ShowSelectorCells){qza[qza.length]="<td";qza[qza.length]=" width=\""+qg21.SelectorCellWidth+"\"";qza[qza.length]=" onclick=\""+this.Id+".ClickHandler(event,this,-1,' + table.Level + ')\"";qza[qza.length]=" class=\""+qg21.SelectorCellCssClass+"\">";qza[qza.length]="<div style=\"vertical-align:center;text-align:center;width:"+qg21.SelectorCellWidth+"px;\">";if(qg21.SelectorImageUrl){qza[qza.length]="<img id=\""+this.Id+"_selector_"+qg30+"\" border=\"0\" alt=\"\" src=\""+qg21.SelectorImageUrl+"\"";if(qg21.SelectorImageHeight>0){qza[qza.length]=" height=\""+qg21.SelectorImageHeight+"\"";};if(qg21.SelectorImageWidth>0){qza[qza.length]=" width=\""+qg21.SelectorImageWidth+"\"";};if(!row.Selected){qza[qza.length]=" style=\"visibility:hidden;\"";};qza[qza.length]=" />";}else{qza[qza.length]="&nbsp;";};qza[qza.length]="</div></td>";};return totalCols;};window.ComponentArt_Grid.prototype.RenderSearchBox=function(qza){qza[qza.length]='<div';if(this.SearchTextCssClass){qza[qza.length]=' class="'+this.SearchTextCssClass+'"';};qza[qza.length]='>'+this.SearchText+' ';qza[qza.length]='<input onsubmit="return false;" onkeypress="return !'+this.Id+'.SearchCheckEnter(event)" id="'+this.Id+'_searchBox"';if(this.SearchBoxCssClass){qza[qza.length]=' class="'+this.SearchBoxCssClass+'"';};qza[qza.length]=' onkeyup="'+this.Id+'.SearchKeyHandler(event,this);" type="text" maxlength="20" size="20" value="'+this.SearchString+'" /></div>';};window.ComponentArt_Grid.prototype.GetButtonImageSource=function(sLocation,sImage,qzxa,qzzu,bHover,bActive){var sImageUrl=sLocation+sImage,sContent="alt=\"\" src=\""+sImageUrl+"\"";if(qzxa>0)sContent+=" height=\""+qzxa+"\"";if(qzzu>0)sContent+=" width=\""+qzzu+"\"";if(bHover){var sHoverImageUrl=sLocation+sImage.replace(".gif","_hover.gif");sContent+=" onmouseover=\"this.src='"+sHoverImageUrl+"';\" onmouseout=\"this.src='"+sImageUrl+"';\"";};if(bActive){var sActiveImageUrl=sLocation+sImage.replace(".gif","_active.gif");sContent+=" onmousedown=\"this.src='"+sActiveImageUrl+"';\" onmouseup=\"this.src='"+sImageUrl+"';\"";};return sContent;};window.ComponentArt_Grid.prototype.GetScrollButtonSource=function(sImage,qzxa,qzzu,bHover,bActive){return this.GetButtonImageSource(this.ScrollImagesFolderUrl,sImage,qzxa,qzzu,bHover,bActive);};window.ComponentArt_Grid.prototype.RenderScroll=function(domObj){var bEnabled=this.PageSize<this.RecordCount,scrollHeight=domObj.offsetHeight-this.ScrollButtonHeight*2,qza=['<table style="height:100%;" cellpadding="0" cellspacing="0" border="0"'];if(this.ScrollBarCssClass){qza[qza.length]=' class="'+this.ScrollBarCssClass+'"';};qza[qza.length]='>';if(this.ScrollHeaderCssClass){qza[qza.length]='<tr><td class="'+this.ScrollHeaderCssClass+'">&nbsp;</td></tr>';};qza[qza.length]='<tr><td style="height:'+this.ScrollButtonHeight+'px;"><img style="display:block;" onclick="'+this.Id+'.ScrollBy(-1);return false;" ';qza[qza.length]=this.GetScrollButtonSource(bEnabled?"up.gif":"up_disabled.gif",this.ScrollButtonHeight,this.ScrollButtonWidth,this.ScrollButtonHoverEnabled,this.ScrollButtonActiveEnabled);qza[qza.length]=' /></td></tr>';qza[qza.length]='<tr><td style="height:'+scrollHeight+'px;" valign="top" onclick="ComponentArt_Grid_HandleScrollPage(event,this,'+this.Id+');">';if(bEnabled){var scrollGripHeight=Math.round((this.PageSize*scrollHeight)/this.RecordCount),outerScrollGripHeight=scrollGripHeight;if(this.ScrollTopBottomImagesEnabled&&this.ScrollTopBottomImageHeight>0){outerScrollGripHeight+=this.ScrollTopBottomImageHeight*2;};var offsetTop=Math.max(0,Math.min(scrollHeight-outerScrollGripHeight,Math.round((this.RecordOffset*(scrollHeight-outerScrollGripHeight))/(this.RecordCount-this.PageSize))));qza[qza.length]='<table cellpadding="0" cellspacing="0" border="0" onmousedown="ComponentArt_Grid_HandleScrollStart(event,this,'+this.Id+');" style="position:relative;top:'+offsetTop+'px;">';if(this.ScrollTopBottomImagesEnabled){qza[qza.length]='<tr><td';if(this.ScrollTopBottomImageHeight>0){qza[qza.length]=' height="'+this.ScrollTopBottomImageHeight+'"';};if(this.ScrollTopBottomImageWidth>0){qza[qza.length]=' width="'+this.ScrollTopBottomImageWidth+'"';};qza[qza.length]='><img style="display:block;" '+this.GetScrollButtonSource('top.gif',this.ScrollTopBottomImageHeight,this.ScrollTopBottomImageWidth)+' /></td></tr>';};qza[qza.length]='<tr><td style="height:'+scrollGripHeight+'px;" class="'+this.ScrollGripCssClass+'" >&nbsp;</td></tr>';if(this.ScrollTopBottomImagesEnabled){qza[qza.length]='<tr><td';if(this.ScrollTopBottomImageHeight>0){qza[qza.length]=' height="'+this.ScrollTopBottomImageHeight+'"';};if(this.ScrollTopBottomImageWidth>0){qza[qza.length]=' width="'+this.ScrollTopBottomImageWidth+'"';};qza[qza.length]='><img style="display:block;" '+this.GetScrollButtonSource('bottom.gif',this.ScrollTopBottomImageHeight,this.ScrollTopBottomImageWidth)+' /></td></tr>';};qza[qza.length]='</table>';};qza[qza.length]='</td></tr><tr><td style="height:'+this.ScrollButtonHeight+'px;"><img style="display:block;" onclick="'+this.Id+'.ScrollBy(1);return false;" ';qza[qza.length]=this.GetScrollButtonSource(bEnabled?"down.gif":"down_disabled.gif",this.ScrollButtonHeight,this.ScrollButtonWidth,this.ScrollButtonHoverEnabled,this.ScrollButtonActiveEnabled);qza[qza.length]=' /></td></tr></table>';domObj.innerHTML=qza.join('');};window.ComponentArt_Grid.prototype.GetPagerGripSource=function(){var sImageUrl=this.PagerImagesFolderUrl+"slider_grip.gif",sContent="alt=\"\" src=\""+sImageUrl+"\"";if(this.SliderGripWidth>0)sContent+=" width=\""+this.SliderGripWidth+"\"";if(this.PagerButtonHoverEnabled){var sHoverImageUrl=this.PagerImagesFolderUrl+"slider_grip_hover.gif";sContent+=" onmouseover=\"this.src='"+sHoverImageUrl+"';\" onmouseout=\"this.src='"+sImageUrl+"';\"";};sContent+=" onmousedown=\"ComponentArt_Grid_HandleSlideStart(event,this,"+this.Id+");";if(this.PagerButtonActiveEnabled){var sActiveImageUrl=this.PagerImagesFolderUrl+"slider_grip_active.gif";sContent+="this.src='"+sActiveImageUrl+"';\" onmouseup=\"this.src='"+sImageUrl+"';\"";}else{sContent+="\"";};return sContent;};window.ComponentArt_Grid.prototype.GetPagerButtonSource=function(sImage){return this.GetButtonImageSource(this.PagerImagesFolderUrl,sImage,this.PagerButtonHeight,this.PagerButtonWidth,this.PagerButtonHoverEnabled,this.PagerButtonActiveEnabled);};window.ComponentArt_Grid.prototype.RenderPager=function(qza){if(this.PagerStyle==0){this.RenderNumberedPager(qza);}else if(this.PagerStyle==1){this.RenderSlider(qza);}else{this.RenderButtonPager(qza);};};window.ComponentArt_Grid.prototype.RenderPagerInfo=function(qza){qza[qza.length]='<div';if(this.PagerTextCssClass){qza[qza.length]=" class=\""+this.PagerTextCssClass+"\"";};qza[qza.length]='>';if(this.PagerInfoClientTemplateId){var qg34=this.GetClientTemplate(this.PagerInfoClientTemplateId);if(qg34){qza[qza.length]=ComponentArt_InstantiateClientTemplate(qg34,this,null);}else{qza[qza.length]="Template not found: "+this.PagerInfoClientTemplateId;};}else{qza[qza.length]="Page <b>"+(this.CurrentPageIndex+1)+"</b> of <b>"+this.PageCount+"</b> ("+this.RecordCount+" items)";};qza[qza.length]='</div>';};window.ComponentArt_Grid.prototype.RenderSlider=function(qza){var totalPages=this.PageCount;qza[qza.length]="<table height=\""+this.SliderHeight+"\" border=\"0\" cellpadding=\"0\" cellspacing=\""+this.PagerButtonPadding+"\"><tr>";qza[qza.length]="<td width=\"1\"><img style=\"cursor:pointer;\" "+this.GetPagerButtonSource('first.gif')+" onclick=\""+this.Id+".Page(0);return false;\"></td>";qza[qza.length]="<td width=\"1\"><img style=\"cursor:pointer;\" "+this.GetPagerButtonSource('prev.gif')+" onclick=\""+this.Id+".PreviousPage();return false;\"></td>";var slideImageWidth=this.SliderGripWidth,sliderWidth=this.SliderWidth;this.SliderPosition=Math.round((this.CurrentPageIndex*(sliderWidth-slideImageWidth))/(totalPages-1));qza[qza.length]="<td onclick=\"ComponentArt_Grid_HandleSlideClick(event,this,"+this.Id+");\" width=\""+sliderWidth+"\" background=\""+this.PagerImagesFolderUrl+"slider_bg.gif\"><img style=\"cursor:pointer;position:relative;left:"+this.SliderPosition+"px;\" "+this.GetPagerGripSource()+"></td>";qza[qza.length]="<td width=\"1\"><img style=\"cursor:pointer;\" "+this.GetPagerButtonSource('next.gif')+" onclick=\""+this.Id+".NextPage();return false;\"></td>";qza[qza.length]="<td width=\"1\"><img style=\"cursor:pointer;\" "+this.GetPagerButtonSource('last.gif')+" onclick=\""+this.Id+".Page("+(totalPages-1)+");return false;\"></td>";qza[qza.length]="</tr></table>";};window.ComponentArt_Grid.prototype.RenderNumberedPager=function(qza){qza[qza.length]="<div style='white-space:nowrap;'";if(this.PagerTextCssClass){qza[qza.length]=" class=\""+this.PagerTextCssClass+"\"";};qza[qza.length]=">";var startPage=this.PageCount<=5?0:Math.max(0,this.CurrentPageIndex-2),endPage=this.PageCount<=5?this.PageCount:Math.min(startPage+5,this.PageCount);if(this.PageCount>5&&this.CurrentPageIndex>2){qza[qza.length]="<a href=\"#\" onclick=\""+this.Id+".Page(0);return false;\">&laquo; First</a>&nbsp;...&nbsp;";qza[qza.length]="<a href=\"#\" onclick=\""+this.Id+".PreviousPage();return false;\">&lt;</a>&nbsp;";};for(var page=startPage;page<endPage;page++){var showPage=page+1;if(page==this.CurrentPageIndex){qza[qza.length]=showPage+"&nbsp;";}else{qza[qza.length]="<a href=\"#\" onclick=\""+this.Id+".Page("+page+");return false;\">"+showPage+"</a>&nbsp;";};};if(this.PageCount>5&&this.CurrentPageIndex<this.PageCount-3){qza[qza.length]="<a href=\"#\" onclick=\""+this.Id+".NextPage();return false;\">&gt;</a>&nbsp;...&nbsp;";qza[qza.length]="<a href=\"#\" onclick=\""+this.Id+".Page("+(this.PageCount-1)+");return false;\">Last &raquo;</a>&nbsp;";};qza[qza.length]="</div>";};window.ComponentArt_Grid.prototype.RenderButtonPager=function(qza){var totalPages=this.PageCount;qza[qza.length]="<table height=\""+this.SliderHeight+"\" border=\"0\" cellpadding=\"0\" cellspacing=\""+this.PagerButtonPadding+"\"><tr>";qza[qza.length]="<td width=\"1\"><img style=\"cursor:pointer;\" "+this.GetPagerButtonSource('first.gif')+" onclick=\""+this.Id+".Page(0);return false;\"></td>";qza[qza.length]="<td width=\"1\"><img style=\"cursor:pointer;\" "+this.GetPagerButtonSource('prev.gif')+" onclick=\""+this.Id+".PreviousPage();return false;\"></td>";qza[qza.length]="<td width=\"1\"><img style=\"cursor:pointer;\" "+this.GetPagerButtonSource('next.gif')+" onclick=\""+this.Id+".NextPage();return false;\"></td>";qza[qza.length]="<td width=\"1\"><img style=\"cursor:pointer;\" "+this.GetPagerButtonSource('last.gif')+" onclick=\""+this.Id+".Page("+(totalPages-1)+");return false;\"></td>";qza[qza.length]="</tr></table>";};

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人一区二区三区视频| 秋霞午夜鲁丝一区二区老狼| 欧美一区在线视频| 日本韩国精品在线| 91高清在线观看| 色综合久久88色综合天天| 色综合色狠狠综合色| 色综合网色综合| 欧美视频一区在线| 欧美午夜精品久久久| 9色porny自拍视频一区二区| 国产福利精品导航| eeuss鲁片一区二区三区| 成人黄色免费短视频| 91麻豆免费看片| 欧美日韩一级片在线观看| 欧美日韩二区三区| 精品久久99ma| 国产精品久久久久久福利一牛影视 | 99精品视频在线观看| 国产福利91精品一区| 99国产一区二区三精品乱码| 色噜噜狠狠一区二区三区果冻| 久久成人18免费观看| 国产一区二区在线看| 不卡电影一区二区三区| 91久久人澡人人添人人爽欧美| 91麻豆免费看| 日韩欧美国产麻豆| 国产精品色噜噜| 偷拍亚洲欧洲综合| 国产成人av影院| 91成人免费在线| 26uuu国产电影一区二区| 国产精品久久久久aaaa樱花| 亚洲第一综合色| 国产黑丝在线一区二区三区| 色94色欧美sute亚洲线路一久 | 中文字幕视频一区二区三区久| 欧美国产丝袜视频| 亚洲欧美视频一区| 国产精品一区二区三区乱码| 色婷婷综合久久久中文字幕| 日韩一区二区三区四区五区六区| 久久亚洲私人国产精品va媚药| 精品久久久久久最新网址| 中文字幕亚洲区| 国内精品视频666| 91浏览器打开| 国产清纯在线一区二区www| 亚瑟在线精品视频| 91日韩精品一区| 久久久不卡网国产精品一区| 亚洲第一成人在线| 91色九色蝌蚪| 欧美午夜一区二区三区免费大片| 国产精品国产馆在线真实露脸| 久久精品人人做人人综合 | 国产成人av电影在线观看| 欧美午夜影院一区| 亚洲精品写真福利| 高清不卡在线观看| 久久综合九色综合97婷婷女人| 亚洲成在人线在线播放| 91在线视频18| 国产精品二区一区二区aⅴ污介绍| 日韩福利电影在线| 欧美亚洲高清一区| 一区二区三区欧美日韩| 97se亚洲国产综合自在线| 国产视频视频一区| 国产91富婆露脸刺激对白| 欧美xxxxxxxx| 国产自产2019最新不卡| 日韩免费性生活视频播放| 日韩电影免费一区| 8x福利精品第一导航| 日韩主播视频在线| 欧美一区二区视频在线观看2022| 一区二区三区加勒比av| 在线视频一区二区三| 亚洲永久免费av| 在线看日韩精品电影| 亚洲一区二区三区中文字幕 | 婷婷六月综合网| 欧美在线free| 午夜精品视频在线观看| 欧美日韩国产a| 久久成人麻豆午夜电影| 国产婷婷色一区二区三区| 成人黄色小视频| 亚洲综合成人网| 欧美一区永久视频免费观看| 久久精品国产在热久久| 久久女同精品一区二区| eeuss鲁片一区二区三区在线观看| 亚洲国产精品成人综合色在线婷婷| 狠狠狠色丁香婷婷综合激情| 国产色产综合色产在线视频| caoporn国产精品| 亚洲mv在线观看| 精品国产乱码久久久久久蜜臀| 精品一区二区三区在线观看 | 久久久国际精品| 成人激情图片网| 亚洲成人免费电影| 精品国产1区二区| 91在线视频播放| 老汉av免费一区二区三区| 欧美国产成人精品| 精品视频一区二区三区免费| 国内外精品视频| 亚洲欧美激情插| 日韩精品一区二区三区视频播放 | 亚洲午夜久久久久中文字幕久| 91玉足脚交白嫩脚丫在线播放| 一区二区三区在线播| 日韩欧美国产小视频| 色视频成人在线观看免| 狠狠色丁香久久婷婷综| 一区二区三区不卡在线观看| 久久综合中文字幕| 欧美三级午夜理伦三级中视频| 日韩av电影天堂| **欧美大码日韩| 欧美mv和日韩mv的网站| 91高清视频在线| 成人国产精品免费观看视频| 日韩高清不卡一区二区三区| 自拍偷拍国产精品| 国产偷国产偷精品高清尤物| 56国语精品自产拍在线观看| 99re热这里只有精品视频| 国产中文一区二区三区| 日韩和欧美的一区| 亚洲精品伦理在线| 国产精品久久久久久久第一福利| 91精品一区二区三区在线观看| 国产91露脸合集magnet| 日产国产欧美视频一区精品| 一区二区三区蜜桃| 亚洲女人的天堂| 亚洲女人的天堂| 亚洲精品欧美专区| 亚洲色图都市小说| 成人欧美一区二区三区| 国产欧美在线观看一区| 久久久久久一级片| 精品国产91洋老外米糕| 欧美一区二区三区在线观看视频| 色婷婷久久一区二区三区麻豆| 激情综合色综合久久| 久久综合综合久久综合| 美国毛片一区二区| 天天综合日日夜夜精品| 香蕉久久夜色精品国产使用方法| 自拍偷在线精品自拍偷无码专区| 久久久久久久久久久电影| 久久亚洲一级片| 国产亚洲短视频| 中文字幕成人网| 国产精品久久久久久久久久免费看 | 欧美日韩国产色站一区二区三区| 国产精品自拍一区| 国产成人亚洲综合a∨婷婷图片| 蜜臀av性久久久久蜜臀aⅴ | 欧美日韩一区二区在线观看视频| 91丨九色丨蝌蚪富婆spa| 91免费视频网| 欧美日韩国产精品成人| 日韩一区二区免费高清| 欧美精品一区二区三区蜜桃| 国产清纯白嫩初高生在线观看91 | 99久久综合精品| 91天堂素人约啪| 欧美日韩精品一区二区三区四区 | 欧美三级电影在线看| 日韩精品最新网址| 国产精品三级久久久久三级| 亚洲一卡二卡三卡四卡| 男男成人高潮片免费网站| 韩国三级中文字幕hd久久精品| 国产一区二区三区免费播放 | 亚洲免费观看高清完整版在线观看熊| 精品国产一区二区三区四区四| 欧美一区二区三区免费观看视频 | 久久精品久久综合| 99精品久久只有精品| 欧美丰满美乳xxx高潮www| 久久精品在线免费观看| 亚洲最新视频在线观看| 精品综合免费视频观看| 91麻豆国产香蕉久久精品| 91精品在线一区二区| 亚洲乱码国产乱码精品精小说| 性欧美疯狂xxxxbbbb| av成人老司机| 2019国产精品| 秋霞电影网一区二区| 色综合色综合色综合|