Hi,
I have added one checkbox column to ultragrid dynamically. But the problem i am facing is that these checkbox are not in editable mode. Actually what i want is need to check some of the checkboxes and save only the selected checkbox rows. The code i wrote to add checkbox is
ldt_Temp = ads_eventDEtails.Tables["HCP"]; ldt_Temp.Columns.Add("Remove", typeof(Bitmap)); ldt_Temp.Columns.Add("Select", typeof(bool));
utgd_hcpgridinfosmry.DataSource = ldt_Temp; utgd_hcpgridinfosmry.DisplayLayout.Bands[0].Columns["Select"].Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox; utgd_hcpgridinfosmry.DisplayLayout.Bands[0].Columns["Select"].CellActivation = Infragistics.Win.UltraWinGrid.Activation.AllowEdit;
Kindly let me know where i am wrong.....its urgent
Hello,
I am checking about the progress of this issue. Please let me know If you need any further assistance on this.
I tried this and it always works fine for me so I attached my sample to this post for you. Please review it and feel free to let me know if I misunderstood you or if you have any other questions.