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
850
Tri-state checkboxes in a bound column?
posted

I have a column which is bound to a System.Boolean object, and which appears as a checkbox. I'd like to make it a tri-state checkbox; what do I need to set its type to, and how do I configure it?

Thanks,
   Aaron

Parents
  • 12773
    posted

    Hello ,

    You can try to use the Style property of the column set to TriStateCheckBox

    e.Layout.Bands[0].Columns["Selected"].Style = Infragistics.Win.UltraWinGrid.ColumnStyle.TriStateCheckBox;

    You can find more details here:
    http://help.infragistics.com/NetAdvantage/WinForms/2010.1/CLR2.0/?page=Infragistics2.Win.UltraWinGrid.v10.1~Infragistics.Win.UltraWinGrid.ColumnStyle.html


    I hope this helps.

    Sincerely,
    Dimi
    Developer Support Engineer
    Infragistics, Inc.

Reply Children