How can i automatically refresh a Tabular Form i used this but it didnt work but it works in a classic report. Where P4_LIST is the static id of the Tabular Form.
var refreshId = setInterval(function(){
$('#P4_LIST').trigger('apexrefresh');
}, 2000);
Any ideas?
The problem was that I didn’t select the partial refresh of the Tabular Form. Now it works.