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
2320
Copy and paste when grid is readonly
posted

How can I make an XamGrid be readonly while at the same time letting the user select a cells contents so they can copy and paste values?  I.e, grid is readonly, but they need to be able to select a cells value, copy and paste it into another app.

If I set

<ig:XamGrid.EditingSettings>
  <ig:EditingSettings AllowEditing="Cell" IsMouseActionEditingEnabled="SingleClick"
IsEnterKeyEditingEnabled
="True" IsF2EditingEnabled="True"
IsOnCellActiveEditingEnabled
="False" />
</ig:XamGrid.EditingSettings>

I set these editing settings to make it so you can select on an individual cell.
I also set the columns IsReadOnly to true but once you do this, you can't select
the cell's value.

Any help would be greatly appreciated.

Thanks in advance.