Skip to main content
Solved

How add a dropdown list in 2023R2

  • 11 June 2024
  • 3 replies
  • 55 views

Hi All,

Could please share us the steps to add a dropdown list for a screen.

Thank you

3 replies

Badge +18

Hello,

Can you please show a screen shot of what you need, an example?  To help us answer.

Thank you.

 

Laura

Userlevel 6
Badge +4

Hi @nawanjanahansamali50 ,

You need to create a custom field with string datatype. then in DAC declaration add a

 [PXDBString(10, IsUnicode = true)]
[PXUIField(DisplayName = "Test")]
[PXStringList(
new string[] { "Value1", "Value2", "Value3" },
new string[] { "Description 1", "Description 2", "Description 3" }
)]
public virtual string TestField { get; set; }

attribute to add dropdown values. It will changes your string field to dropdown automatically

Userlevel 4
Badge

Hi @nawanjanahansamali50 

 

Is this help to resolve your concern?

https://community.acumatica.com/develop-customizations-288/dropdown-list-in-customer-location-screen-13322?tid=13322&fid=288

https://community.acumatica.com/develop-customizations-288/dropdown-list-not-displaying-13590?tid=13590&fid=288

Reply