hello, i need to show a button only if a sharepoint column called Contact has a Yes value.
Inside the DisplayMode property of the button i wrote this
If(UserList.Selected.Contact, Edit, Disabled)
but it doesn't work.
to debug, i made a label showing UserList.Selected.Contact and it always display true, even when the column shows a no. So it's some sort of bug? how to fix this?
Solved! Go to Solution.
If(UserList.Selected.Contact, DisplayMode.Edit, DisplayMode.Disabled)
this solved my problem
If(UserList.Selected.Contact, DisplayMode.Edit, DisplayMode.Disabled)
this solved my problem
User | Count |
---|---|
255 | |
110 | |
90 | |
51 | |
44 |