Benjamin Cripps

Results 47 comments of Benjamin Cripps

In this case, you should have `selectionEvent: false`. This isn't documented well -- but selection event really only deals with clicking on a row. If you click the checkbox, it...

Yeahhhhh, this has been a feature I've been thinking about for a while. It's something that should definitely be added -- it's just tough. I changes the way we determine...

I would take a look at the bulk selection example, which is dynamically changing what the pageSize. Here is the [code](https://github.com/bencripps/react-redux-grid-demo/tree/master/src/components/examples/bulk-selection), and here is the actual live [example](http://react-redux-grid.herokuapp.com/BulkSelection).

I know the current test suite is passing, but are there any new tests we should add to check how this new code affects the current implementation or the newly...

You are right; we don't currently expose an event for when data is loaded into the grid. That seems like a reasonable request, though! I'm going to mark this as...

Yeah, grid assumes that data is either a native JS object, or an immutable object. It doesn't know how to retrieve data from a redux-freeze object. PR's welcome! The only...

Thanks for posting, I'm working on a resolution as we speak. Will push once complete.

I've thought about this, and I think rather than simply fixing this bug I'm going to utilize the react-dnd library that we use for dragging/dropping the tree rows. Soooo, that...

Do you have a small version of the app, or a repro where I can run this locally?