[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: KUIB 3.0 - 'Data Bound' event function for a Data Grid view

  • Thread starter Thread starter Radoslav Kirilov
  • Start date Start date
Status
Not open for further replies.
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...
 
Status
Not open for further replies.
Back
Top