Merge pull request #1911 from hansrwindhoff/master

selectItem added
This commit is contained in:
Masahiro Wakame
2014-04-01 10:40:56 +09:00
+3
View File
@@ -130,6 +130,9 @@ declare module ngGrid {
/** all of the items selected in the grid. In single select mode there will only be one item in the array. */
selectedItems?: any[];
/** Select deselect an item by index. */
selectItem?: (idx:number, state:boolean) =>any;
/** Disable row selections by clicking on the row and only when the checkbox is clicked. */
selectWithCheckboxOnly?: boolean;