I am calling a linked report with dbr.editable and updating a cell. The SQL update works great, however I want to update the css style for the cell that was just edited in the linked report also. Is this possible?
This is the linked report entry and the stored procedure that does the update.
select 'dbr.editable', 'deptprio22', 'sp_DBR_jobcosting_edit_deptprio22', 'inJobNum=jobnum', 'type=select', "select=select priorityid, prioritydesc from jobcosting.dbo.priorities";
IF object_id('sp_DBR_jobcosting_edit_deptprio1','P') IS NOT NULL
DROP PROCEDURE [sp_DBR_jobcosting_edit_deptprio1]
GO
CREATE PROCEDURE sp_DBR_jobcosting_edit_deptprio1
@inJobNum int,
@inValue int
AS
BEGIN
UPDATE jobcosting.dbo.Master SET
deptprio1=@inValue
WHERE [Job #]=@inJobNum
END
GO