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

Announcements

No record found.

News and Announcements icon
Community site session details

Community site session details

Session Id :
Microsoft Dynamics AX (Archived)

Sort form field with code

(0) ShareShare
ReportReport
Posted on by

Hello experts,

I tried to sort a field in form grid by code but when I did it the sort stays there all the time. My goal is to give the user the option to clear the sort. Maybe I am doing something wrong. This is my code:

[FormDataSourceEventHandler(formDataSourceStr(ProdTable, ProdTable), FormDataSourceEventType::Initialized)]
public static void ProdTable_OnActivated(FormDataSource sender, FormDataSourceEventArgs e)
{
var ProdTable_Ds = sender as FormDataSource;
Query q = new Query();
QueryBuildDataSource ds = q.addDataSource(tableNum(ProdTable));
ds.addSortField(fieldNum(ProdTable, ItemId));
ProdTable_Ds.query(q);
}

Thanks

*This post is locked for comments

I have the same question (0)
  • Verified answer
    Martin Dráb Profile Picture
    239,385 Most Valuable Professional on at

    Sorting a datasource every time when a record is activated is a very strange approach. Don't you want to do it once when the form it being initialized? You can even do it without any code, by simply setting the Index property of the datasource. (You must create an index anyway for performance reasons.)

    Also, when doing such things in code, you should modify the query used by the form, instead of replacing it with creating a new one (losing everything set up by the form). Like this:

    ProdTable_ds.queryBuildDataSource().addSortField(fieldNum(ProdTable, ItemId));

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

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Stars!

Meet the Microsoft Dynamics 365 Contact Center Champions

We are thrilled to have these Champions in our Community!

Congratulations to the March Top 10 Community Leaders

These are the community rock stars!

Leaderboard > 🔒一 Microsoft Dynamics AX (Archived)

#1
CP04-islander Profile Picture

CP04-islander 39

#2
Michel ROY Profile Picture

Michel ROY 14

#3
imran ul haq Profile Picture

imran ul haq 8

Last 30 days Overall leaderboard

Featured topics

Product updates

Dynamics 365 release plans