Insert record before Table loaded

I would like to insert some record on the List Page before the table data loaded.

Server Event → Table-Specific → List Page → Page_Load

Execute(“INSERT …”);


Data is inserted in the same list page Table.
But it is not showing in the List Page.
If I reload the List Page again it show the data.

How can I insert the DATA in the same List Page Table before loading the table data
so that it can show the data in list page including the data currently inserted using Server Event.

Data is not loaded yet when Page_Load is called. What exactly did you insert and where is it to be shown?

Try Page_Loading server event. Just check the current table id in that event, then run that Execute() global function.