Skip to content

Instantly share code, notes, and snippets.

@springcome
Created November 2, 2015 02:40
Show Gist options
  • Save springcome/25bbcb5a823e35994500 to your computer and use it in GitHub Desktop.
Save springcome/25bbcb5a823e35994500 to your computer and use it in GitHub Desktop.
SmartGWT, ListGrid, CheckBox
// ListGrid의 Record checkbox에 대한 설정을 변경한다.
// setAttribute("canSelect", false or true);
// 레코드의 checkbox를 보이거나 보이지 않게 설정한다.
Record [] records = ListGrid.getRecords();
for (Record record : records) {
record.setAttribute("canSelect", false);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment