Exemple #1
0
        public string GetChildrenPath(string action, object row)
        {
            // If there is no row, we can't get a path
            if (row == null)
            {
                return(String.Empty);
            }

            return(ChildTable.GetActionPath(action, GetRouteValues(row)));
        }
 public string GetChildrenPath(string action, object row, string path)
 {
     return(ChildTable.GetActionPath(action, row, path));
 }
 public string GetChildrenListPath(object row)
 {
     return(ChildTable.GetActionPath(PageAction.List, row));
 }