jswolf19
jswolf19
@ndrsn Sorry I haven't had much of a chance to look at this yet... I'm not doing much javascript, so I'm not real sure how to run the tests anymore....
Ok, I think I've got tests running at any rate. I'm on Windows using npm in wsl Ubuntu, so there were a few hoops to jump through. I needed to...
@josh-hemphill considering the lack of issues about support for ES5 despite the fact that support has been broken for over half a year, I'm not sure how much value bundling...
This problem still exists in the current version. You can use [this fiddle](http://jsfiddle.net/jswolf19/kcr9Lje2/) to reproduce. Before expanding any parent row, the context menu seems to work fine, but after expanding...
Workaround: ```javascript var grid = canvasDatagrid(args); grid.args.treeGridAttributes = { ... }; ```
As a workaround: ```javascript grid.addEventListener('beforesortcolumn', function(e) { e.preventDefault(); }); ```
@TonyGermaneri It's not a major blocker for me at the moment ^^ I had found `setFilter`, and have no problem reapplying the filters myself, but I haven't found a way...
> It seems the solution for this ticket is to make column filters public as well as provide a method to clear all filters. It appears that calling `setFilter` with...
I've got a [branch](https://github.com/jswolf19/canvas-datagrid/commits/setFilterFix) where I've added tests for and fixed the two issues in `setFilter`. In the process, I found some new problems that might be considered breaking changes....
> I'm not sure what you mean by "The default number filter does not work as expected when receiving a string filter value". I think the value needs to always...