Carlos Esteban Lopez Jaramillo

Results 156 comments of Carlos Esteban Lopez Jaramillo

Heeyy let me ask you, in which version is this available? i have a package that uses still Ng2-beta.16 and upgrading is not an option.

@revov i'm going for the `(ngGridItemChange)` route for the moment until primeng updates to Angular 2-beta.17, the main issue is the amount of times that function gets called, it get's...

@BTMorton I see, so i can do 2-way data bind to the original data object, can i add both the `2-way` and the `(ngGridItemChange)` so that the binding will keep...

@BTMorton Do you have available the code to https://bmorton.co.uk/angular/ example? i get unexpected behaviour out of: ``` html .... ``` For some reason it just stacks like if it were...

Oh wait maybe is because in `sizex` i`m using a function instead of the object variable, i will have to set that from the api response.

That won't be possible, the user shouldn't need a save button, the idea is that the user can add, remove, reorder and resize on real time, i took care of...

@revov I misread your response, if i understand correctly i should `2-way` the grid items and for the event to throttle use the `onItemChange` binding on the grid container? @BTMorton...

Ok i still had to bind with `onItemChange` since the widget properties are named different, so i use it to map the values.

@BTMorton The stacking was actually happening because i was binding wrong, doing `([])` instead of `[()]` which was triggering the data binding backwards so at the start the properties were...

@BTMorton I think i need to use `onItemChange` instead of `onChangeStop`, according to the docs: ``` js onDragStop(item) // When an item stops being dragged. Returns reference to corresponding NgGridItem...