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
710
Delete row of UltraGrid without confirmation message at runtime..
posted

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

 

Parents
  • 3707
    Verified Answer
    posted

    Code snippet below suppresses the deletion message.

    private void ultraGrid1_BeforeRowsDeleted(object sender, 
      Infragistics.Win.UltraWinGrid.BeforeRowsDeletedEventArgs e)
    {
    	e.DisplayPromptMsg = false;
    }
    

Reply Children
No Data