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
225
How do i remove the first column on my DataPresenter?
posted

It looks like There is a column with an arrow/triangle and it lights up when you mouse over a row or select a row. 

I'm guessing there is just an attribute that I can set to hide it, but i'm not sure what it is.  If someone knows how i can hide this first column, that would be great. 

Thanks in advance!

  • 70
    Verified Answer
    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>

    http://forums.infragistics.com/forums/t/1408.aspx