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 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
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
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.
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.
}
I could not understand that what you mean of assign selected value into grid?
Are you talking about filtering the grid?
André Arnaud de Cal... 291,642 Super User 2024 Season 2
Martin Dráb 230,371 Most Valuable Professional
nmaenpaa 101,156