Ben Morton

Results 85 comments of Ben Morton

@pocmanu take a look at the fixed_items branch and see if that fits your requirements? 31ee2caf5d07bdec9eab876a846e23eaf39e0c46

@pocmanu I've updated the fixed_items branch with the latest changes from master. If you get the chance to have a look. I'll probably merge it into master some point soon

OK, I'll see if I can clarify it a bit. I'm thinking about adding yet another config option `is_sticky` which means that it won't be moved by another dragged item,...

Yeah, the `can_cascade` could be encompassed in `is_sticky`. So a sticky item won't move in any situation, unlike how `can_cascade` works at the moment. That loses some flexibility though. I'm...

Hey @Ajeey, Is it definitely saying can't bind to `ng-grid`? Meaning your HTML looks something like: ``` html ``` If that's the case it's a simple fix. The selector is...

Hey @yantrab, At the moment the grid doesn't sort the items at all and stores them in the order that they were originally added to the grid. I'd like to...

If you wanted to simplify that a bit there's a payload property for the items, meaning you could just do: ``` javascript onDragStop(item) { item._ngGrid._items.forEach((e) => { var id =...

You can set the `max_cols`, `max_rows` or `visible_cols`, `visible_rows` properties to have percentage column widths. `max_cols`, `max_rows` will limit the number of items based upon that, but `visible_cols`, `visible_rows` will...

Just published v3.0.0 with angular 6 support. Give that a go

Hey! What config have you got? Are you using a drag/resize handle at all?