Hi
How to remove selected row from UltraGrid ??
try
//true to show prompt to delete otherwise false will not show
this
.ultraGrid.Rows[this.ultraGrid.ActiveRow.Index].Delete(true);
This doesnt work .. The active row is not deleted using this code.. Is there any alternate solution .. I was trying
Selected.Rows.AddRange((UltraGridRow[])this.parsedDataList.Rows.All);.DeleteSelectedRows(false);
This is not working as well.