I have a report that contain 2 parts
1. Load a 2 table data from database by calling stored procedure
call fap_woi.MyDBR_LoadData1(); --> table 1
call fap_woi.MyDBR_LoadData2(); --> table 2
2. Load an input grid form that let user input data. The requirement that when user input data, the report refresh only table 1.
Currently I have to refresh all page by using callback
select 'dbr.javascript', "function reload_callback()
{
$('.load1')[0].click();
}";
Currently, When I first go, report display the table, after few seconds of loading, the Ajax load the table 1 and push the table 2 down. That behaviour is not user-friendly. How can let the report display table 1, table at the same time. Some kind of waiting for table loading completed then display table 1, table?