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
70
UltraWinGrid (15.1) ClickCellButton not firing the
posted

Visual Studio 2013, using UltraWinGrid v15.1: When I click the cell button it is not raising the click cell button event. What am I missing?

public mmTest()

{

InitializeComponent();

DataSet dsAllUsers = GetAllUsers(DummyConfig.ConnectionInfo); // calls a stored proc to get the data

DataTable dt = dsAllUsers.Tables[0];

ultraGrid1.DataSource = dt;

ultraGrid1.DataBind();

ultraGrid1.DisplayLayout.Bands[0].Columns["UserID"].Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Button;

ultraGrid1.DisplayLayout.Bands[0].Columns["UserID"].ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;

}

private void ultraGrid1_ClickCellButton(object sender, Infragistics.Win.UltraWinGrid.CellEventArgs e)

{

MessageBox.Show("Button in " + e.Cell.Value.ToString() + " cell was clicked.");

}

Parents
No Data
Reply
  • 48586
    Verified Answer
    posted

    Hello ,

     

    Have you verified that the event handler was attached to the UltraGrid? You should check the designer or the designer generated code.

     

    I am waiting for your response.

Children