I have a grid similar to the following:
Line #
| Customer #
| Origin
| Destination
|
1
| 9987654
| Columbus, OH
| Akron, OH
|
2
| 3275678
| Cleveland, OH
| Imperial, PA
|
I need the line # to be a hyperlink which will open an external form where the user can edit the details of the row. There is too much data to display in the grid but the row data will have everything I need to display on the external form for editing. The line number is in the dataset and uniquely identifies the row.
I need to pass the row data to the external form. The user will have the option to save or cancel their changes. When they close the form, they will return to the grid. Some rows will not be editable but if the user selects one of these rows, the external form will open with the data displayed as read only; the user should be able to close the form and return to the grid.
Can I do something like this using the Syncfusion DataGrid?
Thank you