We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
grid.on('expand'(event)=>{... this.grid.resetData(newData)})
안녕하세요, toast grid를 사용하다 expand, collapse에 따라서 데이터의 값을 변경하려고 했으나 작동하지 않습니다. 이벤트 안에서 resetData()를 할 수 없는 건지 궁금합니다.
제가 생각하기로는 resetData()를 하면서 expand, collapse 정보도 초기화가 되는 것 같은데... 그리드의 데이터(보여지는 rowData)만 교체할 수는 없는 걸까요?
그리고 event 발생하는 빈도를 보니까 collapse는 한번 호출되는데 expand는 펼치기 했을 때 딱 한번 호출되는 게 아닌 것 같습니다. 어떻게 동작하는 건가요?
The text was updated successfully, but these errors were encountered:
this.grid.resetData(newData)
엘리먼트가 아닌, 아래와 같이 객체로 실행해 보시길 바랍니다.
event.instance.resetData(newData)
Sorry, something went wrong.
No branches or pull requests
grid.on('expand'(event)=>{... this.grid.resetData(newData)})
안녕하세요, toast grid를 사용하다
expand, collapse에 따라서 데이터의 값을 변경하려고 했으나 작동하지 않습니다.
이벤트 안에서 resetData()를 할 수 없는 건지 궁금합니다.
제가 생각하기로는 resetData()를 하면서 expand, collapse 정보도 초기화가 되는 것 같은데...
그리드의 데이터(보여지는 rowData)만 교체할 수는 없는 걸까요?
그리고 event 발생하는 빈도를 보니까
collapse는 한번 호출되는데 expand는 펼치기 했을 때 딱 한번 호출되는 게 아닌 것 같습니다.
어떻게 동작하는 건가요?
The text was updated successfully, but these errors were encountered: