Changed IGridOptions.data property to be any type

Curreng ng-grid documentation incorrectly lists out the possible data option values - it's actually either string or object reference. See https://github.com/angular-ui/ng-grid/issues/1033#issuecomment-37218058
This commit is contained in:
asaveliev
2014-03-17 12:56:31 -04:00
parent 65f6e6cac3
commit 0a9851d2ec
+4 -2
View File
@@ -36,8 +36,10 @@ declare module ngGrid {
/** definitions of columns as an array [], if not defined columns are auto-generated. See github wiki for more details. */
columnDefs?: IColumnDef[];
/** Data being displayed in the grid. Each item in the array is mapped to a row being displayed. */
data?: any[];
/** Data being displayed in the grid. This can be either a string of object ID or object reference.
Using string is preferred, as this turns on change tracking in ng-grid
*/
data?: any;
/** Data updated callback, fires every time the data is modified from outside the grid. */
dataUpdated?: Function;