There is two ways how you can disable a field based on some condition in AcumaticaThe most common way is by SetEnable method for PXUIFieldAttribute and it’s look like thisPXUIFieldAttribute.SetEnabled<DAC.DACfield>(View.Cache, row, true/false);But this is one more way of doing this by addin...
Hello everybody,
today I want to write a few words about changes of PXUIFieldAttribute.SetVisibility method.
In the past, if you wanted to turn on some column, you could write in RowSelected event something like this:
PXUIFieldAttribute.SetVisibility&...