I want to display a grid with no filters on the header using angular ui grid.Currently with the below code im getting filters at the column header.
app.controller('MainCtrl', ['$scope','$http', function ($scope,$http) {
$scope.gridOptions = {};
$http.get('data/grid1.json')
.success(function(data) {
$scope.gridOptions.data = data;
});
}]);
Below is the HTML where the grid is loaded
<div id="grid1" ui-grid="gridOptions" class="grid"></div>
here is a sample how it looks like http://ui-grid.info/
Could anybody suggest me how to remove these filters