By using this website, you agree to our Terms of Use (click here)
How do I go about changing the attributes of a newly created field so that it has dropdown options? I understand that Automation Steps will be used (as outlined in this post) but it seems as if there are more customizations needed for the field.
You have to add something like this to the field properties
[PXStringList (new string[] {“Option 1”, “Option 2”}, new string[] {“Option 1”, “Option 2”}}]
the first new string is for what is stored in the database. The second is for what is displayed. If you are storing some other type to the database just change the type.