Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
100
where to put "overrideeditingsettings"
posted

Tried to override the edititing settings. But i'm not sure where to put it in the xaml-tree. Here what I tried:

<igXaml:XamGrid.EditingSettings>
<igXaml:EditingSettings
AllowEditing="Hover"/>
</igXaml:XamGrid.EditingSettings>

<igXaml:XamGrid.ColumnLayouts>

<igXaml:ColumnLayout Key="OverrideEditSettings" TargetTypeName="MYCOLUMTYPE">

<igXaml:ColumnLayout.EditingSettings>
<igXaml:EditingSettingsOverride IsOnCellActiveEditingEnabled="True" AllowEditing="Cell" IsEnterKeyEditingEnabled="True" IsMouseActionEditingEnabled="SingleClick"/>
</igXaml:ColumnLayout.EditingSettings>
</igXaml:ColumnLayout>
</igXaml:XamGrid.ColumnLayouts>
<cgXaml:XamGrid.Columns >
<mynamespace:MYCOLUMTYPE 
IsSortable="False"
Key="Combination" />

No change of behavior.

Parents
No Data
Reply
  • 34810
    Offline posted

    Hello,

    I have been able to reproduce this issue in both our 2014.1 and 2013.2 WPF products. You have the override settings in the right place, but keep in mind that the ColumnLayouts in XamGrid are primarily used for hierarchical data. It seems that the override not working only occurs when the EditingSettings in the XamGrid are set to Hover. As a result, I have logged this behavior in our internal tracking system with a Development ID of 178207.  The next step will be for a developer to review my investigation and confirm my findings or to offer a fix, or other resolution.

    I have made this case viewable to you. It has a case ID of CAS-142248-S0V6J5. I will update you with any new information after the review.  You can also continue to send updates to this case at any time.  

    Please let me know if you need more information.

    Sincerely,
    Andrew
    Developer Support I
    Infragistics Inc.
    www.infragistics.com/support

Children