Hi
Thanks for the above - I managed to get it to work by clicking the refresh button.
I've a similar but different situation where I've got stuck.
I've a simple report as follows:
select 'dbr.css','ul.dbrlist.hlist li.list_no_link{font-weight:bold;color:#1254B8!important;}';
select 'dbr.report', 'sp_DBR_Schedule_Line_v2', 'line', 'inLine=Line';
select 'dbr.hidecolumn','Line';
select 'dbr.list', 'hlist';
select if(Line = 0,"All Lines",concat("Line ",Line)),
line as "[Line]"
from line_tmp
order by Line;
select 'dbr.embed_object', 'line';
As you can see by clicking one of the hlist list items I open a report below the hlist items.
In this linked report I have two reports. In one of the reports there are editable and linked reports that update the data in the tables.
I've all this working fine but what I would like to do to is refresh the linked report (sp_DBR_Schedule_Line_v2).
I've tried using the dbr.refresh but that refreshes the primary report and I have to select the hlist item again.
I don't know how to use the inline_refresh() - I've tried select 'dbr.javascript','inline_refresh("#line")';
but it does nothing and I'm not sure if that is the way to do it.
Thanks for your help
Jake