cancel
Showing results for 
Search instead for 
Did you mean: 

Is there any event for sap.m.Table after rendering?

0 Kudos

On initial loading of the UI, I need to manipulate the DOM elements to disable the selection for rows in a list report Responsive Table based on some conditions. Is there any event or hook on which we can apply logic after the table is rendered ?

I am using Fiori elements or Smart template to develop the UI.
https://archive.sap.com/discussions/thread/3676641 - I read this but it is not working for me.

Any help is appreciated.

Thanks in advance

Accepted Solutions (1)

Accepted Solutions (1)

ericci
Active Contributor
0 Kudos

Well, what you can do is to:

1) hook up to the onAfterRendering of the table

2) hook up to the onUpdateFinshed event of the table (this event comes from the ListBase). This event is fired for many reasons (binding, filtering, growing, and so on). You can check the reason from the oEvent parameter passed with the event.

0 Kudos

Thanks a lot Emanuele. The second hook worked for me.

Answers (0)