2011 Mar 04 8:21 AM
Hello,
In my ALV GRID, I added a specific button to add lines in the grid ALV. When I click on this button, a row is added.
But when I save the list, the event DATA_CHANGED is not raised for the added row if I did not change it before.
And so this line is not checked.
Can you tell me if it is possible that adding a line through the specific button to raise this event.
Thank you.
Best regards,
Patrice.
Moderator message: please use more descriptive subject lines for your posts.
Edited by: Thomas Zloch on Mar 4, 2011 10:18 AM
2011 Mar 04 8:58 AM
Hi,
Have you tried with DATA_CHANGED_FINISHED event instead of DATA_CHANGED?
SET HANDLER:
o_manager_event_alv->data_changed_finished
FOR o_alv_grid.
CALL METHOD o_alv_grid->register_edit_event
EXPORTING
i_event_id = cl_gui_alv_grid=>mc_evt_modified.
Regards,
Hello,
In my ALV GRID, I added a specific button to add lines in the grid ALV. When I click on this button, a row is added.
But when I save the list, the event DATA_CHANGED is not raised for the added row if I did not change it before.
And so this line is not checked.
Can you tell me if it is possible that adding a line through the specific button to raise this event.
Thank you.
Best regards,
Patrice.
Moderator message: please use more descriptive subject lines for your posts.
Edited by: Thomas Zloch on Mar 4, 2011 10:18 AM
2011 Mar 04 8:58 AM
Hi,
Have you tried with DATA_CHANGED_FINISHED event instead of DATA_CHANGED?
SET HANDLER:
o_manager_event_alv->data_changed_finished
FOR o_alv_grid.
CALL METHOD o_alv_grid->register_edit_event
EXPORTING
i_event_id = cl_gui_alv_grid=>mc_evt_modified.
Regards,
2011 Mar 04 10:59 AM