Brian Ellis
Brian Ellis
Does it crash if you 2-way bind it to an instance of the NgGridItemConfig interface instead of a statically defined object like that? I'm not sure that would be a...
I know this is super old, and this isnt really helpful for you, but with our mobile applications I would use ng2-responsive to detect for some sizes and either change...
Yeah it should be possible to use extends to add some inheritance but I would imagine you could also get away by packaging the angular2-grid items in a new module...
For something like that you’d probably be better off with a wrapper module. So lets say you have a module, and that module implements the angular2-grid items. Since config is...
If you look in here: https://github.com/BTMorton/angular2-grid/blob/master/src/directives/NgGrid.ts At the top there are Outputs() @Output() public onResize: EventEmitter = new EventEmitter(); And those are called by emitting in the code: this.onResizeStart.emit(item); So...
Hmm... now I'm using the release version of Angular 2 now so there may be some things that are off. In my app.module I am importing NgGridModule from angular2-grid/dist/main, and...
Ahh, I've not tried angular 2 grid with Ionic so I am not sure if there is anything weird there. This is an abbreviated version of my app.module where I...