트리그리드에서 키값으로 해당 그리드 행을 구하는 API이다.
| Parameters | Type | Description |
|---|---|---|
| strItemKey | STRING | 트리 아이템 키 |
| Type | Description |
|---|---|
| long | 그리드 행 |
function btnFind_on_mouseup(objInst)
{
var nFindRow = treeGrid.findtreeitem("D");
if(-1 < nFindRow) {
treeGrid.setselectitem(nFindRow, 0, true);
}
}