Hi, i am trying to change text on confirmation message box when i try to delete a row in the wingrid, i couldn't found anything for now, any ideas to do that?
Thanks
this.ultraGrid.BeforeRowsDeleted += new BeforeRowsDeletedEventHandler(ultraGrid_BeforeRowsDeleted);
void ultraGrid_BeforeRowsDeleted(object sender, BeforeRowsDeletedEventArgs e){ e.DisplayPromptMsg = false; MessageBox.Show( "Anything you want to say" );}