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
108
Several questions about xamGrid
posted

Hello,

I'm having some difficulties customizing the xamGrid component:

1. I have a CheckBoxColumn and I want the checkbox to be toggled within 1 click. I saw a solution on this forum, but it was for xamDataGrid only. The basic xamGrid does not have EnterEditModeIfAllowed property.

2. I want to remove the border around the selected cell and the vertical borders in the selected row as well:

3. The screenshow also shows a nasty graphical glitch: a part of the checkbox in the first column gets cropped. My idea was that the place is taken up by the order indicator, but the column is defined with IsSortable=False.

 

  • 108
    Suggested Answer
    posted

    The first issue has been resolved by AllowEditing property:

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

    However, I only have one editable field so it works fine for me, but in case of many editable columns this may be tricky.