Skip to main content
Answer

Customization Multiselect Combo Box

  • May 8, 2025
  • 7 replies
  • 160 views

FinnSystemAG
Freshman II
Forum|alt.badge.img

Hello guys,

i tried to create a Multiselect Combo Box but it not working, hope u can help me.

[PXDBString(500)]
[PXStringList(new string[] { "E1", "E2", "M", "U" }, 
              new string[] { "elektr. Sicherheit", "EMV", "Material", "Umweltsimulation" },
MultiSelect = true)]
[PXUIField(DisplayName = "Bereich")]

 

 

Best answer by svwk05

@FinnSystemAG Change the PXTextEdit to PXDropDown In Edit Aspx

<px:PXTextEdit runat="server" ID="CstPXDropDown1" DataField="UsrBereich" CommitChanges="True" />

modify below

<px:PXDropDown runat="server" ID="CstPXDropDown1" DataField="UsrBereich" CommitChanges="True" />

Thanks

7 replies

Forum|alt.badge.img+1
  • Jr Varsity II
  • May 8, 2025

Hi ​@FinnSystemAG ,

Can you please try by using below MatrixMode=”true” property like below for your field,

  <px:PXDropDown ID="edRcptQtyAction" runat="server" DataField="RcptQtyAction"  CommitChanges="True" MatrixMode="true" ></px:PXDropDown>

hope above helps!!

 


Forum|alt.badge.img+1
  • Semi-Pro III
  • May 8, 2025

Hi ​@FinnSystemAG 

It looks like the PXDropDown control might be missing from your ASPX declaration. Could you please double-check?


<px:PXDropDown ID="edUsrBereich" runat="server" DataField="UsrBereich" CommitChanges="True" />

 

Thanks


FinnSystemAG
Freshman II
Forum|alt.badge.img
  • Author
  • Freshman II
  • May 8, 2025

it shows :
<px:PXTextEdit runat="server" ID="CstPXDropDown1" DataField="UsrBereich" CommitChanges="True" />


FinnSystemAG
Freshman II
Forum|alt.badge.img
  • Author
  • Freshman II
  • May 8, 2025

Hi ​@FinnSystemAG ,

Can you please try by using below MatrixMode=”true” property like below for your field,

  <px:PXDropDown ID="edRcptQtyAction" runat="server" DataField="RcptQtyAction"  CommitChanges="True" MatrixMode="true" ></px:PXDropDown>

hope above helps!!

 

like this ?

 


Forum|alt.badge.img+1
  • Semi-Pro III
  • Answer
  • May 8, 2025

@FinnSystemAG Change the PXTextEdit to PXDropDown In Edit Aspx

<px:PXTextEdit runat="server" ID="CstPXDropDown1" DataField="UsrBereich" CommitChanges="True" />

modify below

<px:PXDropDown runat="server" ID="CstPXDropDown1" DataField="UsrBereich" CommitChanges="True" />

Thanks


FinnSystemAG
Freshman II
Forum|alt.badge.img
  • Author
  • Freshman II
  • May 8, 2025

@FinnSystemAG Change the PXTextEdit to PXDropDown In Edit Aspx

<px:PXTextEdit runat="server" ID="CstPXDropDown1" DataField="UsrBereich" CommitChanges="True" />

modify below

<px:PXDropDown runat="server" ID="CstPXDropDown1" DataField="UsrBereich" CommitChanges="True" />

Thanks

Thanks a lot.

@Rakshanda u too mate. Thanks


FinnSystemAG
Freshman II
Forum|alt.badge.img
  • Author
  • Freshman II
  • May 8, 2025

When I import EMV into UsrBereich via import by scenario it works. But, when I try to import both EMV and Material (for example, EMV, Material together), it doesn't work.
What do I need to adjust to make this work?
In the end, both EMV and Material should be selected.