Page 1 of 1

ListOptions

Posted: Thu Feb 29, 2024 6:13 pm
by eftalboza

Hello,
I want to hide the edit button on the row based on the " xxx " condition. Can you help me.
What mistake did I make in the code below?

public void ListOptions_Rendered() {
   
if (SameString(myfield.CurrentValue,"xxx"))

ListOptions("edit").Visible = false;

}

Re: ListOptions

Posted: Fri Mar 01, 2024 6:54 am
by MichaelG

It should use something like:

ListOptions["edit"].Visible = false;