Forum Discussion
1 Reply
Sort By
- OSAdminValued Contributor IIOriginally posted by Jon Golembiewski
This is possible through an XFBR rule. Something like this should work:
Else If args.FunctionName.XFEqualsIgnoreCase(""ButtonVisible"") Then
'Pull in the workflow time
Dim wfTime As String = args.SubstVarSourceInfo.WFTime
'Check the condition and return the format value
If wfTime.XFContainsgnoreCase(""Jan"") Then
Return ""IsVisible = False""
Else
Return ""IsVisible = True""
Then, you call the rule in the Button Component format property:
End If
Related Content
- 9 months ago