Exemple #1
0
        /// <summary>
        /// Gets the children for category.
        /// </summary>
        /// <param name="category">The category.</param>
        /// <returns></returns>
        public override IList GetChildrenForCategory(VirtualTreeGridCategory category)
        {
            if (category.Id == 0 && this.Store != null && this.Contract != null)
            {
                return(this.Contract.GetChildrenForCategory(category));
            }

            return(base.GetChildrenForCategory(category));
        }
Exemple #2
0
 /// <summary>
 /// Gets the children for category.
 /// </summary>
 /// <param name="category">The category.</param>
 /// <returns></returns>
 public IList GetChildrenForCategory(VirtualTreeGridCategory category)
 {
     return(Values);
 }
Exemple #3
0
 /// <summary>
 /// Gets the children for category.
 /// </summary>
 /// <param name="category">The category.</param>
 /// <returns></returns>
 public IList GetChildrenForCategory(VirtualTreeGridCategory category)
 {
     return(Arguments);
 }
Exemple #4
0
 /// <summary>
 /// Gets the children for category.
 /// </summary>
 /// <param name="category">The category.</param>
 /// <returns></returns>
 public virtual IList GetChildrenForCategory(VirtualTreeGridCategory category)
 {
     return(Operations);
 }
 /// <summary>
 /// Gets the children for category.
 /// </summary>
 /// <param name="category">The category.</param>
 /// <returns></returns>
 public System.Collections.IList GetChildrenForCategory(VirtualTreeGridCategory category)
 {
     return(ReferencedServiceContract != null?ReferencedServiceContract.GetChildrenForCategory(category) : s_emptyList);
 }