Showing posts with label sample Example of Multi Select in Ax 2012. Show all posts
Showing posts with label sample Example of Multi Select in Ax 2012. Show all posts

Monday, 7 May 2018

sample Example of Multi Select in Ax 2012

CustTable custTable;
    CustAccount     acc;
    //Name name;
    //container  values=multiselect.get();
    container  name, values=multiselect.getSelectedFieldValues();
    int i;
    super();


    for(i=1;i<=conLen(values);i++)
    {
       // info(conPeek(values,i));
        acc = conPeek(values,i);
       name = conIns(name,i,custTable::find(acc).name());
        //info(conPeek(values1,i));
        info(strFmt("%1",conPeek(name,i)));
    }