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

inline select에서 Casecade Select를 사용하는 방법이 궁금합니다. #158

Open ryankweon opened 4 years ago

ryankweon commented 4 years ago

A컬럼의 Select값을 변경하면 A컬럼의 코드 또는 부수 적인 값에 따라 B컬럼의 Options 값이 변경되게 처리하고 싶은데 방법이 있을까요?

ex) A의 options [{code:"a", name: "A", attr:"01"}, {code:"b", name: "B", attr:"01"}, {code:"c", name: "C", attr:"02"}]

A의 선택된 값의 attr이 "01"이면 B의 options는 [{code:"가", name: "가", attr:"01"}, {code:"나", name: "나", attr:"01"}]

A의 선택된 값의 attr이 "02"이면 B의 options는 [{code:"다", name: "다", attr:"02"}, {code:"라", name: "라", attr:"02"}]

처럼 처리하고 싶습니다.

도움을 요청드립니다.