ListOptions

This public forum is for user-to-user discussions of ASP.NET Maker. Note that this is not support forum.
Post Reply
eftalboza
User
Posts: 38

ListOptions

Post 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;

}

MichaelG
User
Posts: 1110

Post by MichaelG »

It should use something like:

ListOptions["edit"].Visible = false;

Post Reply