Created
November 2, 2015 11:10
-
-
Save springcome/a1d71d01b5a9af2c2b8f to your computer and use it in GitHub Desktop.
ListGrid데이터 삭제하기
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| btnClear.addClickHandler(new ClickHandler() { | |
| @Override | |
| public void onClick(ClickEvent event) { | |
| listGrid.setData(new Record[]{}); | |
| } | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment