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
elect 'dbr.javascript', 'function reload_callback()
{
location.reload();
}';
select 'dbr.editable', 'Qty', 'sp_DBR_inputSellInForecast', 'ItemDataTypeID="0"', 'DealerID="10"', 'ItemID=ItemID', 'TimeStampID=Week', 'Qty=Qty', "options={'callback':reload_callback}";
How can I refresh only table 1?
Thank