In this post, I would like to help the developers who are new to Dynamics AX and how to work with list views and manipulate data using the listViews. Follow the below steps to learn ListView control on the forms. Step 1: Create a new form from AOT >> Forms >> Right click and name it as Example_ListView Expand the newly created form and go to the Designs Node. Add a new Control called ListView and name it as “LeftListView” as shown below. By default -AutoDeclaration property of the ListView will be “Yes”. Now lets learn some important properties of the listView. Right click on the newly created ListView and go to its Properties [Use Alt + Enter shortcut key] . Change the View type property from “Icon” to “Report” s shown below. Save the form and now let’s add coulmns to the list view. Since we have set the autodeclaration property of the LeftListView to “yes”, we can use this control inside the code. Step 2: Override the init() method of the Example_ListView form a...