Hi guys,I need to use a custom field with multiselect lookup on a dialog form. ( i extended the right class and implemented it)Which type of Edt should i use to get the values from this custom field ?And how to implement it in code (i didnt find any example) ?For now i tried to add a string field on this dialog and the value from this field is : "524C; 525C; 526C", that s the multiselection i made.But i need to use this values separtly to loop on it so i thought that i need a list and iterate on it, is it right ?
Someone could help ?Regards.
Hi Awaxx,
Yes, you need to use container function to get the selected value from the multiselect lookup class. Multiselect Lookup class will have method to get the selected value as container.
Refer to the below blogs and see if it was helpful.
https://erpdax.wordpress.com/2014/09/05/how-to-select-multiple-selected-values-records-from-lookups-in-dynamics-ax/
https://stoneridgesoftware.com/how-to-create-multi-select-lookup-in-microsoft-dynamics-ax/
Thanks,
Girish S.
Hi, You can try below code to loop through all selected values from string control. Replace InputStr with your string control name that have values. You can create this code in method and pass string control as parameter.
List list = new List(Types::String); ListIterator iterator; list = Global::strSplit(InputStr, ";"); iterator = new ListIterator(list); while (iterator.more()) { info(strfmt("%1",iterator.value()); //This will give individual value }
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
As AI tools become more common, we’re introducing a Responsible AI Use…
We are honored to recognize Pallavi Phade as our Community Spotlight honoree for…
These are the community rock stars!
Stay up to date on forum activity by subscribing.
André Arnaud de Cal... 734 Super User 2025 Season 2
CA Neeraj Kumar 636
Martin Dráb 553 Most Valuable Professional