Add deselect function to API

This commit is contained in:
Sam Georges 2014-07-25 17:49:32 +10:00
parent a475773c7c
commit 49d40e77ad
1 changed files with 5 additions and 0 deletions

View File

@ -232,6 +232,11 @@
}
})
}
DataGrid.prototype.deselect = function() {
this.gridInstance.deselectCell()
}
DataGrid.prototype.setData = function(data) {
this.gridInstance.loadData(data)
}