Notifications
Announcements
No record found.
I have created one combobox with A,B,C values when i select particular values that selected value should be assign to grid .my problem is how to assign selected value into grid.
*This post is locked for comments
I could not understand that what you mean of assign selected value into grid?
Are you talking about filtering the grid?
while select * from Temptable
where temptable.num==1000
{
--------------------//How to write code to assign values into grid
//select all temptable values where num ==1000 and assign into grid.
}
Don't use select statement for binding values to the grid. It is not the best practice.
Add the table as form datasource and drag that datasource fields in to grid, create range and assign value to range by using x++ code.
Please refer to this link
dynamics-ax-live.blogspot.in/.../how-to-filter-records-in-form-by-code.html
Instead of using combo box and adding filter by using x++, the user can use default grid filter option by press ctrl+g shortcut. I am not sure that it is ok for you.
Create Display Method in table and Call in StringEdit Control in Grid.
Display str StudentName() { A_Student _Student; ; select Student_Name from _Student where _Student.Student_ID== this.Mark_Student; return _Student.Student_Name; } //fill stringedit by changing dropdown //set this method in sub table method
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.
As AI tools become more common, we’re introducing a Responsible AI Use…
We are honored to recognize Neeraj Kumar as our Community Spotlight honoree for…
These are the community rock stars!
Stay up to date on forum activity by subscribing.
Martin Dráb 4 Most Valuable Professional
Priya_K 4
MyDynamicsNAV 2