Skip to content

Instantly share code, notes, and snippets.

@springcome
Created November 2, 2015 11:10
Show Gist options
  • Select an option

  • Save springcome/a1d71d01b5a9af2c2b8f to your computer and use it in GitHub Desktop.

Select an option

Save springcome/a1d71d01b5a9af2c2b8f to your computer and use it in GitHub Desktop.
ListGrid데이터 삭제하기
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