1

I have asked about this question before this but no response. So I will try to ask again the question. I have this two buttons in form and I want to display those buttons in view. One button called "Close Active" and another one is "Close Draft".

So for button "Close Active", I want to show the button only in view with document status of "Active" and "Lock" while for button "Close Draft", I want to show the button only in view with document status of "Draft". I try using hide-when but it did not display.

For "Close Draft"

!(PStatus = "Draft")

For "Close Active"

(Pstatus != "Active" : "Lock")

I know how to hide-when this button in Lotus Notes, but I can't found any example of hide button for web. Any help I appreciated. Thanks!

Reinhaa
  • 195
  • 1
  • 17

1 Answers1

1

So based on @RichardSchwartz suggestion, I fixed the problem after test it in Lotus Notes. I just need to move exclamation sign to front like this:

!(PStatus = "Active" : "Lock");
Reinhaa
  • 195
  • 1
  • 17