Hi i trying to create a basic deleting option through DBR and i'm struck with the following.
basically i want to delete particular row with popup confirmation.
Error : Invalid column name '$(mydbr_selected_cell).parent().remove();'.
if object_id('sp_DBR_delete_Test_Group','P') is not null
drop procedure sp_DBR_delete_Test_Group
go
create procedure sp_DBR_delete_Test_Group
(
@labid varchar(10)
)
AS
begin delete
from PATIENT_TEST_GROUP_LIST
where LAB_ID = @LABID select 'dbr.javascript', "$(mydbr_selected_cell).parent().remove();"; end
go