I have two dropdowns/combos I’ve added, and would like to control the visibility of the second menu based on the value of the first:
I would like the second dropdown (Shot Peen) be visible if the first dropdown (Mold Part) = 1/Yes
Would I set the visibility like this?
[PXUIVisible(typeof(Where<TSMIGOpportunityQuotePricingExt.UsrCMoldPartTexture.IsEqual<1>>))]
So the final would be something like this:
[PXDBInt]
[PXIntList(new int[] {0, 1}, new string[] {"No", "Yes"})]
[PXUIVisible(typeof(Where<TSMIGOpportunityQuotePricing.UsrCMoldPartTexture.IsEqual<1>>))]
[PXUIField(DisplayName="Shot Peen 330 or Less?")]
Any help appreciated… the first time I tried this I got an error but I think because I got the dac/field name wrong.

