Hiii,
I want to delete multiple rows at run time without shown confirmation message to user. How it is possible... ? Any property there in UltraGrid for unable Delete Confirmation Message.. ?
- Hiren Lad
Code snippet below suppresses the deletion message.
private void ultraGrid1_BeforeRowsDeleted(object sender, Infragistics.Win.UltraWinGrid.BeforeRowsDeletedEventArgs e) { e.DisplayPromptMsg = false; }
Hey thanks for your reply. It work Succesfully..
Thank you...