I am using a Syncfusion Grid in Normal Edit Mode in an Angular application. The grid contains two columns, both using editType: 'dropdownedit'.
My requirement is that when the value of Dropdown A is changed, the available options (or selected value) in Dropdown B should be updated accordingly. However, I am unable to find a way to achieve this in Normal Edit Mode.
Steps to Reproduce:
- The grid has two dropdown columns: Dropdown A and Dropdown B.
- The user edits a row and changes the value in Dropdown A.
- Based on the selection in Dropdown A, Dropdown B should either:
- Have its selected value updated automatically.
- Have its data source updated dynamically.
- Currently, I am unable to update the value or refresh the dropdown list for Dropdown B when Dropdown A changes.
Expected Behavior:
- When the user selects a new value in Dropdown A, Dropdown B should update accordingly in the same row.
Question:
How can I dynamically update the value or the data source of Dropdown B when the user changes the selection in Dropdown A in Normal Edit Mode?
Thank you for your support!