Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.
shrey9GP3F
728 Views, 4 Replies

Hide the control box on the form with iLogic

Hello, community,

 

I am trying to make a list box visibility dynamic, which is controlled by the selection of the previously selected fields. I can grey out the list box by using a boolean parameter. But I want to remove the visibility of the list box entirely. How can I accomplish such a task with iLogic?

 

Thank you.

shrey9GP3F_0-1617719138048.png

enable_subcategory = False

Select Case Cabinet_type

Case "Corner base"
		enable_subcategory = True
		MultiValue.SetList("Cabinet_Subcategory", "none", "Sink base")
		
		Select Case Cabinet_Subcategory
		Case "none"
			MultiValue.SetList("unit_width", "33 in", "36 in")
		End Select
End Select