Skip to main content
Nintex Community Menu Bar
Question

Can you use mustache conditional rendering in button labels?

  • July 10, 2024
  • 2 replies
  • 21 views

Forum|alt.badge.img+7

IBV is a UI only formula field that is true if “Date bid values sent” is not null.

I want to use the statement below as the button label, but it shows “Send Bid Values” whether IBV is true or false:

{{^IBV}}Send Bid Values{{/IBV}}{{#IBV}}Re-send Bid Values{{/IBV}}

This topic has been closed for replies.

2 replies

Forum|alt.badge.img+20

Yup. Just make sure to use the API names of the fields.


Forum|alt.badge.img+7

Thanks, Pat.  Turns out I was trying to use a model other than the default for the page title section.  This worked:

{{^$Model.RFP.data.0.IBV}}Send Bid Values{{/$Model.RFP.data.0.IBV}}{{#$Model.RFP.data.0.IBV}}Re-send Bid Values{{/$Model.RFP.data.0.IBV}}