How Do I Turn Off the Delete Confirmation Pop-up of UltraWinGrids?
If i'm deleting in the code, it's no problem: myUltraGrid.DeleteSelectedRows(False)
But I don't know how to apply that when the user presses the delete key.
The guys over at stackoverflow.com (http://stackoverflow.com/questions/1202177/infragistics-ultrawingrid-delete-confirmation) figured it out. Here is the answer:
You can detect when they press the delete key on your row. Use something like the BeforeRowsDeleted event. That event exposes the BeforeRowsDeletedEventArgs object which has the e.DisplayPromptMsg property available to you.
private void ultraGrid_BeforeRowsDeleted(object sender, BeforeRowsDeletedEventArgs e){ e.DisplayPromptMsg = false;}