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
360
Prevent Column Select
posted

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?

 

 

Parents
No Data
Reply
  • 5
    posted

    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.

Children
No Data