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
460
UltraButton to UltraGrid Cell
posted

How can i assign UltraButton to UltraGrid Cell

  • 1922
    Suggested Answer
    posted

    you can use the following code to enable buttons for all cells of a column

    this.customersUltraGrid.DisplayLayout.Bands[0].Columns[0].Style =
      Infragistics.Win.UltraWinGrid.ColumnStyle.Button;

    Then, there's a ClickCellButton event that you can handle