ax5ui / ax5ui-grid

Javascript UI Component - GRID ( Excel Grid, jqGrid, angularjs grid, jquery grid, SlickGrid, ag-grid gridify)
http://ax5.io/ax5ui-grid/demo/index.html
MIT License
99 stars 36 forks source link

grid search, focus.. #24

Open ZZINY opened 7 years ago

ZZINY commented 7 years ago

안녕하세요?

  1. 그리드에서 primarykey(각 row별로 unique한 값) 로 search 하여 해당 index를 얻어올 수 있는 기능이 있는지 문의합니다.
  2. 그리고, 그리드의 특정 row 로 focus되게 하는 방법은 있는지도 문의합니다. (63row중에서 중간에 있는 row를 select를 했더니 focus는 이동이 안되더라고요. 스크롤을 내려보니 select는 되어 있었습니다.) 감사합니다.
thomasJang commented 7 years ago

포커스

https://github.com/ax5ui/ax5ui-grid/blob/master/API.md#ax5grid.focus 여기 참고하시구요.

search

var searchIndex = ax5.util.search(myGrid.list, function () {
    return this["itemKeyName"] == "X";
});

https://github.com/ax5ui/ax5core/blob/master/API-ax5-util.md#ax5utilsearch

ZZINY commented 7 years ago

답변감사합니다. 많은 도움이 되었습니다.