-
Notifications
You must be signed in to change notification settings - Fork 21
ES-949556 Need to resolve the WPF UG mistakes #1997
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Build Status: INPROGRESS 🔃 |
|
CI Status: FAILURE ❌ |
|
Build Status: INPROGRESS 🔃 |
|
CI Status: SUCCESS ✅ |
|
Build Status: INPROGRESS 🔃 |
|
CI Status: SUCCESS ✅ |
|
Build Status: INPROGRESS 🔃 |
|
CI Status: SUCCESS ✅ |
vijayarasan
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add the comments to explain the customizations made in the event handlers.
Added comment to clarify row drop restrictions.
|
Build Status: INPROGRESS 🔃 |
|
CI Status: SUCCESS ✅ |
|
Build Status: INPROGRESS 🔃 |
|
CI Status: SUCCESS ✅ |
Task Link
UG-949556
Description
Need to update the invalid code snippet in the WPF MultiColumnDropDown and SfDataGrid Control and rearranged the table content in the WPF TreeGrid Control UG documentation.
Solution Description
I have updated the RowDragDropController_Drop event. Within this event, we retrieve the record using e.TargetRecord. However, TargetRecord returns the record index, so when converting it to a model, it throws an exception. To resolve this issue, I directly used e.TargetIndex instead and did not convert it to a model object.
In the MultiColumnDropDown XAML code, we had used invalid double quotes. To fix this, I replaced them with valid quotes.
In the SfTreeGrid, I have arranged the Table of contents based on the SfDataGrid.
Related PR
#1998