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
135
Disabling Record selector
posted

Hi all,

In the grid, the record selector which is a > image, always appears in the first column of the grid. What do I need to do to disable that column from appearing?

Thanks!

  • 1650
    posted

    Hi there, 

    The field layout settings provide a RecordSelectorLocation property to control this:

    <igDP:XamDataGrid>   
      <igDP:XamDataGrid.FieldLayouts>
          <igDP:FieldLayout>
            <igDP:FieldLayout.Settings>
              <igDP:FieldLayoutSettings RecordSelectorLocation="None" />
            </igDP:FieldLayout.Settings>
          </igDP:FieldLayout>
        </igDP:XamDataGrid.FieldLayouts>
      </igDP:XamDataGrid>

     

    hth, Philipp