freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

dhtmlxgridk介紹及使用手冊-資料下載頁

2025-06-05 18:23本頁面
  

【正文】 選中行數(shù)參考實例:()。 doesRowExist(row_id)版本:大眾版參數(shù):row_id: 行id用途:通過row_id檢查是否行存在參考實例:var exist=(some_row_ID)。 enableAlterCss (cssE, cssU, perLevel, levelUnique)版本:大眾版參數(shù):cssE:偶數(shù)行樣式名稱(序號為準)cssU:奇數(shù)行樣式名稱perLevel:是否排序、分層。默認為true,但在treegrid默認為falselevelUnique:否成存在唯一層用途:參考實例:style.even{backgroundcolor:22FF44。}.uneven{backgroundcolor:41964e。}/stylescript//簡單設(shè)置(even,uneven)。//不使用樣式(,)。//treegrid 中支持排序(even,uneven,false,false)。//treeGrid中通過層劃分,層間使用唯一不同的樣式,如(even_0 1st level, uneven_1 2nd level, even_2 3rd level)(even,uneven,true,true)。/script enableMultiline(state)版本:大眾版參數(shù):state:true/false用途:是否多選行模式參考實例:(true)。 enableRowsHover (mode, cssClass)版本:大眾版參數(shù):mode:true/falsecssClass:樣式名稱,樣式用途:鼠標滑過當前行是否改變樣式參考實例:style.hover {backgroundcolor: navy。}/stylescript(true,hover)。/script enableRowspan版本:專業(yè)版 參數(shù):用途:設(shè)置當前grid跨行可用參考實例:()。 forEachRow (custom_code)版本:大眾版 參數(shù):custom_code:自定義js操作用途:遍歷當前行操作,提供rowid,供用戶擴展自定義js操作參考實例:(function(id){//自定義js操作//id row39。s id})。 getAllRowIds(separator)版本:大眾版 參數(shù):separator:分隔符,默認為逗號用途:獲得所有行id,并與分隔符組合參考實例://默認分隔符var ids=()。//retrun list of row ids with dot delimitervar ids=(.)。 getChangedRows (and_added)版本:專業(yè)版 參數(shù):and_added:true/false用途:獲得當前修改行的所有rowid組合,是否包含新增行參考實例://獲得修改行的rowid的組合var ids=()。//獲得修改行的rowid的組合,包含新增行var ids=(true)。 getCheckedRows (col_ind)版本:大眾版 參數(shù):col_ind:ck所在列索引用途:獲得當前選中行的所有rowid組合參考實例:var checked=(0)。 getRowId(ind)版本:大眾版 參數(shù):ind:行索引用途:通過行索引獲得行id參考實例:var rowID=(0)。 getRowIndex(row_id)版本:大眾版 參數(shù):row_id:行id用途:通過行id獲得行索引參考實例:var rowID=(0)。 getRowsNum版本:大眾版 參數(shù):用途:通過grid中行數(shù)量參考實例: getSelectedRowId版本:大眾版 參數(shù):用途:獲得當前選中行id,多個以分隔符組合參考實例: lockRow(rowId,mode)版本:大眾版 參數(shù):rowid:行idmode:true/false用途:是否鎖定當前行,鎖定后不可再編輯參考實例:(row1,true)。 moveRow (rowId,mode,targetId,targetGrid)版本:專用版 參數(shù):rowId:源rowidmode:移動方向 up,down,row_siblingtargetId:目標rowid(跨grid),則移動到頂部targetGrid:目標grid(跨grid)用途:一個或多個grid間移動row參考實例://向上移動row(row1,up)。//移動row1到mygrid2的row2之后(row1,row_sibling,row2,mygrid2)。 moveRowDown(row_id)版本:大眾版參數(shù):rowId:行id用途:向下移動當前行參考實例: moveRowTo(srowId,trowId,mode,dropmode,sourceGrid,targetGrid)版本:專業(yè)版 參數(shù):srowId:源rowidtrowId:目標rowid 為空,則移動到頂部mode:操作方式“move” or “copy”:copy是源grid保留當前row,反之則刪除dropmode:移動方式 同級或子級“sibling” or “child” (默認同級下方)sourceGrid:源grid,默認當前grid中targetGrid:目標grid默認當前grid中用途:一個或多個grid間移動row參考實例://同一grid中移動(row1,row2,move)。//不同grid中拷貝var movedId=(row1,row2,copy,child,mygrid1,mygrid2)。 moveRowUp(row_id)版本:大眾版參考 moveRowDown selectRow (rIndex, fl, preserve, show)版本:大眾版參數(shù):rIndex:行索引或行對象fl:true/false是否觸發(fā)選中事件functionpreserve:true/false 是否保存原有選中行,true時必須保證多選模式可用show:是否自動滾動顯示選中行,默認true用途:行選擇參考實例:(0)。(0,true,true,true)。 selectRowById (row_id, preserve, show, call)版本:大眾版參數(shù):row_id:行idcall:true/false是否觸發(fā)選中事件functionpreservel:true/false 是否保存原有選中行,true時必須保證多選模式可用show:是否自動滾動顯示選中行,默認true用途:行選擇參考實例: setCheckedRows (cInd,v)版本:大眾版參數(shù):cInd:列索引v:是否選中 0 不選中,1 選中用途:設(shè)置grid中行是否全選中參考實例:(0,1)。//全選中(0,0)。 //全不選 setRowColor(row_id,color)版本:大眾版參數(shù):row_id:行idcolor:顏色用途:設(shè)置某行背景顏色,grid加載后使用參考實例:(row1,red)。 setRowExcellType (rowId, type)版本:專業(yè)版參數(shù):rowId:行idtype:excell類型(cp\calck\dhxCalendar\dhxCalendarA\calendar\clist)用途:設(shè)置某行數(shù)據(jù)為復雜的擴展類型參考實例:(row1,ra_str)。 setRowHidden (id, state)版本:大眾版參數(shù):id:行idstate:true/false用途:設(shè)置某行是否顯示參考實例:(row1,false)。 setRowId (ind, row_id)版本:大眾版參數(shù):Ind: 行索引row_id:行id用途:設(shè)置某行id值,grid內(nèi)唯一參考實例:(0,new_row_id)。 setRowTextBold (row_id)版本:大眾版參數(shù):row_id:行id用途:設(shè)置某行數(shù)據(jù)為粗體參考實例:(row1)。 setRowTextNormal(row_id)版本:大眾版參數(shù):row_id:行id用途:設(shè)置某行數(shù)據(jù)為標準字體參考實例:(row1)。 setRowTextStyle (row_id, styleString)版本:大眾版參數(shù):row_id:行idstyleString:樣式字符串,以分隔符組合用途:設(shè)置某行數(shù)據(jù)樣式參考實例:(r123, backgroundcolor: red。 fontfamily: arial。)。 showRow (rowID)版本:大眾版參數(shù):row_id:行id用途:顯示某行參考實例: dhtmlxgrid列操作 adjustColumnSize(cind)版本:大眾版參數(shù):cind:列索引用途:調(diào)整某列寬,使列所有數(shù)據(jù)可見,但需要在制定列寬的情況下,即不能設(shè)定列寬為 *參考實例:(0)。 deleteColumn(ind)版本:專業(yè)版 參數(shù):cind:列索引用途:調(diào)整某列寬,使列所有數(shù)據(jù)可見參考實例:(0)。 enableColumnMove (mode,columns)版本:專業(yè)版 參數(shù):mode:true/falsecolumns:設(shè)定某列是否可以用途:設(shè)置所有列或某列是否可以移動參考實例://全部列可移動(true)。//某列可移動(true,false,true,true,true,true,true)。 enableHeaderMenu版本:專業(yè)版 參數(shù):用途:設(shè)置表頭右鍵菜單可用參考實例: enableResizing(list)版本:大眾版參數(shù):list:設(shè)置當前grid中各列size是否可變參數(shù)組合用途:設(shè)置當前grid中各列size是否可變參考實例:(false,true,true,true,true,true,true)。 enableTooltips(list)版本:大眾版參數(shù):list:設(shè)置當前grid中各列tooltip是否可用參數(shù)組合用途:設(shè)置當前grid中各列tooltip是否可用,即當前列title是否顯示參考實例:(false,true,true,true,true,true,true)。 getColIndexById (id)版本:大眾版參數(shù):id:列id用途:通過列id獲得列索引參考實例:var colIndex=(col1)。 getColType(index)版本:大眾版參數(shù):index:列索引用途:通過列id索引獲得列數(shù)據(jù)類型參考實例:var type=(0)。 getColTypeById (cID)版本:大眾版參數(shù):cID:列ID用途:通過列列ID獲得列數(shù)據(jù)類型參考實例:var type=(column1)。 getColWidth (ind)版本:大眾版參數(shù):index:列索引用途:通過列id索引獲得列數(shù)據(jù)寬參考實例:var width=(0)。 getColumnId (cin)版本:大眾版參數(shù):cin:列索引用途:通過列id索引獲得列Id參考實例:var colId=(0)。 getColumnLabel (cin, ind)版本:大眾版參數(shù):cin:列索引ind: 表頭行索引,默認為0,只有在多表頭下有用用途:獲得列標題參考實例://第一列標題var colLabel=(0)。//第一列第二個表頭標題var colLabel=(0,1)。 getColumnsNum版本:大眾版參數(shù):用途:獲得列的數(shù)量參考實例:var colNum=()。 getFooterLabel (cin, ind)參考getColumnLabel (cin, ind) insertColumn(ind,header,type,width,sort,align,valign,reserved,columnColor)版本:專業(yè)版 參數(shù):ind:列索引header:列表頭標題type:列數(shù)據(jù)類型width:列寬度sort:排序方式align:水平布局方式valign:垂直布局方式reserved:無效參數(shù)columnColor:列背景顏色用途:獲得列的數(shù)量參考實例://最小設(shè)置(10)。//最大參數(shù)設(shè)置(11,Some text,ed,120,na,left,top,null,red) isColumnHidden (ind)版本:專業(yè)版參數(shù):ind
點擊復制文檔內(nèi)容
語文相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1