I have created new menu button in my form named Status. i would like to do something when i click on status “open” then grid value of the status for selected records should be changed to “Open”. please please let me know if there is any help. Thanks in advanced…
go to the form > your button > override the clicked() method
super();
YourTable.Status = YourExdentedDataType::Closed;
If it involves some business logic you can create a class and action menuItem of the class,
add that menuitem to the form required…
Hi Bhavin,
In standard Ax such requirement (as yours) are implemented using filter functionality.
Have a look at Transaction log form under Inquiries in CRM module. Try to follow standard Ax design principle as far as possible.
Regards,