David Mulder
David Mulder
Let's see: - Make various things more declarative (still needs a lot of fixing) - Adding a buffered progress bar - Change a couple of things to `on-tap` - Start...
This: expr = s "END" s = [a-z]+ will result in an "Expected [a-z] or END" error when you parse 'a'. --- This: expr = s "END" s "a string"...
See https://github.com/Polymer/polymer/issues/3094 Can be temporarily fixed by changing line 4195 in Polymer.html to ``` keys = keys.filter(function (a, i, keys) { return self._filterFn(c.getItem(a), i, keys); ```
I think it's only with editable number columns, but still have to look in to this more.
Depends on https://github.com/PolymerElements/paper-input/issues/279
This isn't working at all due to https://github.com/Polymer/polymer/issues/3107 , however as soon as that bug is fixed it should magically work. To get it working 80% for now set a...
Cancelling selection requires finding the selected rows now, which sucks in ``'s that support multi page selection.
`.splices` doesn't get 'initialized' thus `_isRowSelected` doesn't trigger in ``` _isRowSelected(item, multiSelection, selectedItem, selectedItems.splices) ``` causing single selection to not work