I am using the xamDataGrid to display some data, but right now when the user selects a column, the column editor turns my background a different color and allows editing. I want to prevent the column editor from happening at all, basically i want row selection only, any idea on how to do this?
Hi,there are a few properties you might want to consider. They are all about the 'FieldSettings'. Check the code below :
<igDP:XamDataGrid..........><igDP:XamDataGrid.FieldSettings><igDP:FieldSettings AllowEdit="False" CellClickAction="SelectRecord" LableClickAction="Nothing" /></igDP:XamDataGrid.FieldSettings></igDP:XamDataGrid>
Feel free to look for them in our help to see what's the best combination in your case.
Best Regards.