easyui 一些有用的元件使用小記

2021-07-12 03:03:44 字數 3027 閱讀 3830

$

('#cc'

).combobox

(

}

});

$

("#uploadtab"

).datagrid

('loaddata'

,);

tableset

('#uploadtab'

,'操作日誌'

);

varobj

=new

object

();

varopts =$

('#uploadtab'

).datagrid

('options'

);

varpager =$

('#uploadtab'

).datagrid

('getpager'

);

obj

['pagenum']=

opts

.pagesize

;

obj

['pageindex']=

opts

.pagenumber

;

$

.ajax

()

}

})

}

});

},

error

:function

()

});

注意:下面的view:detailviewdetailformatteronexpandrow是關鍵點。但是對於粗心的人來說,最最重要的關鍵點是這個:

$

("#grouptab"

).datagrid

(,

onexpandrow

:gpdetail

});

$

("#grouptab"

).datagrid

('loaddata'

,);

tableset

('#grouptab'

,'我的小組'

);

function

gpdetail

(index

,row

),

]]

})

$

(ddv

).datagrid

('loaddata'

,users

);

}

var

tpmarry =;

varwh =$

(window

).height

();

varww =$

(window

).width

();

$

('.tableldiv'

).height(wh

-250

);

$

('.tablerdiv'

).height(wh

-250

);

$

("#usertbl"

).datagrid

(

tpmarry

.push

(rowdata

);

$

("#selectedtbl"

).datagrid

('loaddata'

,tpmarry

);

}

});

$

("#selectedtbl"

).datagrid

(

});

裡面涉及到了幾個陣列操作函式。

tpmarry.push(rowdata);,將rowdata新增到tpmarry陣列中,rowdata是乙個obj;

tpmarry.splice(rowdata,1);,將這個rowdata從tpmarry中刪除。

$

.ajax

(,

success

:function

(result

)else

}

});

一些有用的函式

1.memset pbuffer,0,pbuffer length 初始化一段記憶體空間,初始值為0 2.sprintf pbuffer,fomatstring,作用和printf差不多,不同的是輸出到指定的快取pbuffer中,而不是輸出到dos控制台。3.sscanf pbuffer,fomat...

一些有用的轉換

relation with conversion 1.wchar tchar widechartomultibyte wcstombs cstring atl macros ole2a w2t w2ct lstrcpy note include swprintf wchar,l ls char wc...

VI的使用 一些有用的技巧

vi是linux中最常見的edit工具,對它的熟練點對你使用linux很有幫助 1 vi的簡單操作 移動 行首 0,移至行尾 向上 k,向下 j,向前 b,向後 w 刪除 x或nx 從游標所在的位置刪除乙個或n個字元 x或nx 刪除游標前的乙個或n個字元 dd 刪除游標所在的行 d 刪除從游標位置開...