R
Radoslav Kirilov
Guest
Hi, Indeed the DataGridView does not have exposed grid's DataBound event in the designer. In order to run the code when this event is fired you need to bind to it manually in the onShow event handler: // Fired when view content is loaded onShow($scope) { console.log('Show'); this.$scope.$watch(() => { return this.$grid; }, (newValue, oldValue) => { if (newValue) { this.$grid.bind('dataBound', (e) => { alert('dataBound'); }); } }); } Best, Rado
Continue reading...
Continue reading...