Hi All,I would like to add a custom button /link on the detail rows of a master-detail form. I have used the code below but the link isn’t rendered
- Server_Events->Table-Specific->Detail Grid Page->LisOptions_Load
$opt = &$this->ListOptions->Add(“line_del”);
$opt->OnLeft = TRUE;
- Server_Events->Table-Specific->Detail Grid Page->LisOptions_Rendered
$this->ListOptions->Items[“line_del”]->Body = “ ”;Please help