Hi…
on master/detail, I put this script on server event → table specific-Preview Page–> listOption_rendered (V2022)
$rs = ExecuteRow("SELECT * FROM ser WHERE nadir="DEB"");
$rs->MoveFirst();
while (!$rs->EOF) {
$this->ListOptions->Items["edit"]->Body = "";
$this->ListOptions->Items["copy"]->Body = "";
$rs->MoveNext();
}
$rs->Close();
i want to dynamically show edit and copy menu base on field nadir… but record doesnt show, there is many data in that table
how to solve this…
thank you