web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Finance | Project Operations, Human Resources, ...
Answered

Multiselect Row On Grid and get first column values

(0) ShareShare
ReportReport
Posted on by 110

HI

I want to get values of first column of AX form Grid selected (checked box) rows.

in my scenario if a user click multiple checkbox of grid on transfer order form i want to get transfer id that is checked by user behind the button click i want all select transfer Ids as show in below picture.

pastedimage1588780417151v1.png

I have the same question (0)
  • Verified answer
    nmaenpaa Profile Picture
    101,172 Moderator on at

    Use MultiSelectionHelper class to iterate all selected records. Then you can collect all field values that you need, one record at a time.

    You can collect all records to a Set object (set of Types::Record) or just Transfer IDs (set of Types::String).

    Search the web for AX MultiSelectionHelper and Collection classes / Set class to learn more.

  • Verified answer
    Blue Wang Profile Picture
    Microsoft Employee on at

    Hi MAKD,

    To get selected record(s) in a grid , you can use MultiSelectionHelper class, then use tablename.fieldname.

    An example:

    MultiSelectionHelper          selectionHelper = MultiSelectionHelper::construct();
    Set                           selectedRecords = new Set(Types::Record);
    MyTable                       myTable;
    super();
     
    selectionHelper.parmDataSource(MyTable_DS); 
    myTable  = selectionHelper.getFirst(); 
     
    if (myTable.RecId)
    {
        while (myTable)
        {
            selectedRecords.add(myTable);
            info(strFmt("Selected record is %1",myTable.myField));//Display selected record
            myTable = selectionHelper.getNext();
        }
    }

  • MAKDAX2012_Ahmed Profile Picture
    110 on at

    Thanks for your good help and opinion

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.

Helpful resources

Quick Links

Season of Sharing Community Challenge Launch!

Jump in, show your community spirit, and win prizes!

Women in Power Builds Momentum

Expanding mentorship, skilling, and AI innovation

Congratulations to the May Top 10 Community Leaders

These are the community rock stars!

Leaderboard > Finance | Project Operations, Human Resources, AX, GP, SL

#1
Abhilash Warrier Profile Picture

Abhilash Warrier 681 Super User 2026 Season 1

#2
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 598 Super User 2026 Season 1

#3
Giorgio Bonacorsi Profile Picture

Giorgio Bonacorsi 579

Last 30 days Overall leaderboard

Product updates

Dynamics 365 release plans