18 references to ContainerType
System.Web.DynamicData (18)
DynamicData\DefaultAutoFieldGenerator.cs (8)
25ContainerType containerType = GetControlContainerType(control); 36protected virtual DynamicField CreateField(MetaColumn column, ContainerType containerType, DataBoundControlMode mode) { 37string headerText = (containerType == ContainerType.List ? column.ShortDisplayName : column.DisplayName); 49internal static ContainerType GetControlContainerType(Control control) { 51return ContainerType.List; 53return ContainerType.Item; 55return ContainerType.List; 61if (itemControl != null && GetControlContainerType(control) != ContainerType.List) {
DynamicData\EntityTemplateUserControl.cs (1)
10public virtual ContainerType ContainerType {
DynamicData\FieldTemplateUserControl.cs (1)
62public virtual ContainerType ContainerType {
DynamicData\IMetaTable.cs (1)
46IEnumerable<IMetaColumn> GetScaffoldColumns(DataBoundControlMode mode, ContainerType containerType);
DynamicData\MetaTable.cs (3)
760public virtual IEnumerable<MetaColumn> GetScaffoldColumns(DataBoundControlMode mode, ContainerType containerType) { 830private bool IsScaffoldColumn(IMetaColumn column, DataBoundControlMode mode, ContainerType containerType) { 1056IEnumerable<IMetaColumn> IMetaTable.GetScaffoldColumns(DataBoundControlMode mode, ContainerType containerType) {
DynamicData\Util\Misc.cs (4)
121public static ContainerType FindContainerType(Control control) { 130return ContainerType.Item; 133return ContainerType.List; 139return ContainerType.List;