protected void UniGrid_OnAction(string actionName, object actionArgument)
 {
     switch (actionName)
     {
     case "deleteoutdated":
         int linkId = ValidationHelper.GetInteger(actionArgument, 0);
         LinkInfoProvider.DeleteLinkInfo(linkId);
         break;
     }
 }
Ejemplo n.º 2
0
 protected void UniGrid_OnAction(string actionName, object actionArgument)
 {
     switch (actionName)
     {
     case "deleteoutdated":
         // Delete link that is not used in current version of the issue
         int linkId = ValidationHelper.GetInteger(actionArgument, 0);
         LinkInfoProvider.DeleteLinkInfo(linkId);
         break;
     }
 }