예제 #1
0
 protected void itemsGrid_ItemDeleted(object sender, Telerik.Web.UI.GridDeletedEventArgs e)
 {
     if (e.Exception != null)
     {
         e.ExceptionHandled = true;
         if (e.Exception.Message == "Exception has been thrown by the target of an invocation.")
         {
             Master.ShowError("Child Records Found!!");
         }
         else
         {
             Master.ShowError(e.Exception.Message);
         }
     }
 }
예제 #2
0
 protected void RadGrid1_ItemDeleted(object source, Telerik.Web.UI.GridDeletedEventArgs e)
 {
 }