web
You’re offline. This is a read only version of the page.
close
Skip to main content
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,160 Moderator on at
    RE: Multiselect Row On Grid and get first column values

    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
    on at
    RE: Multiselect Row On Grid and get first column values

    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
    RE: Multiselect Row On Grid and get first column values

    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

Responsible AI policies

As AI tools become more common, we’re introducing a Responsible AI Use…

Abhilash Warrier – Community Spotlight

We are honored to recognize Abhilash Warrier as our Community Spotlight honoree for…

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

#1
CA Neeraj Kumar Profile Picture

CA Neeraj Kumar 2,004

#2
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 857 Super User 2025 Season 2

#3
Sohaib Cheema Profile Picture

Sohaib Cheema 548 User Group Leader

Last 30 days Overall leaderboard

Product updates

Dynamics 365 release plans