I have a xamdatagrid that the user can edit add rows to. There is a view-only and edit mode. When the xamdatagrid is not enabled, is there a way to keep the vertical scroll bar active? The user needs to scroll through list even when it can't be edited
Hello,
I am just checking if you require any further assistance on the matter.
Thank you for your post. I have been looking into your question and instead of setting the ‘IsEnabled’ property of the XamDataGrid to ‘false’, I can suggest you apply the following styles :
<Style TargetType="igDP:DataRecordPresenter">
<Setter Property="IsEnabled" Value="False"/>
</Style>
<Style TargetType="igDP:LabelPresenter">
This way the control will not be editable and the scrolling will work.
Let me know, if I can assist you with something else on this matter.