Created
November 2, 2015 02:40
-
-
Save springcome/25bbcb5a823e35994500 to your computer and use it in GitHub Desktop.
SmartGWT, ListGrid, CheckBox
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
// 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