Jonathan Shaffer
Jonathan Shaffer
Have you run `jspm install`? `dist` is created on `gulp serve watch` and included in this projects .gitignore
You can check or some similar demos on my [fork](https://jonshaffer.github.io/angular-data-table/), the demos here are tied to a codepen account that needs dependencies updated
You'll want to use the cell renderer for this, and you probably wouldn't need to set a prop. Check out this pen for an example: http://codepen.io/properjon/pen/jyxddZ
@ziofat I created a pull request with dt.popover and dt.menu added to the main script + compiled css, if you look at that changeset you'll also see the various release...
ArrayVariable.slice will actually modify the ArrayVariable, changing the dataset you're paging off of each time. You'll want to replace the following. **Before** ``` $scope.paging = function(offset, size) { let d...
Having a similar issue with a pretty updated fork, we mitigate it currently by either forcing digest's that aren't happening or re-instantiating the table (a lot of options-specific-logic exists only...
We've had to add scope watches to a lot of places and take code out of constructors to get this data table to work in a SPA search form. It's...
@Crypt0Graphic here's a pen demonstrating underscores in both table data, and display names http://codepen.io/properjon/pen/kkdAVm
The issue is like this: $filter in this project [here](https://github.com/swimlane/angular-data-table/blob/d13bb6eaa954d99c0fc764143afadb934a0c0ee7/src/components/DataTableController.js#L186) is dependant on $parse in angular [here](https://github.com/angular/angular.js/blob/6a3374968680ccd809b62ba22b834389ebba99bc/src/ng/filter/orderBy.js#L618) - so there either needs to be some mock filtering changed - or...
Just FYI - I have requirements for an indeterminate and can have a PR for this today (but not with the material style update)