Inheritance: Descriptor
Exemple #1
0
 public bool CanRender(PanelItemType type)
 {
     return type.IsIn(PanelItemType.DropDown);
 }
Exemple #2
0
 public bool CanRender(PanelItemType type)
 {
     return type.IsIn(PanelItemType.RadioButtonList);
 }
Exemple #3
0
 public bool CanRender(PanelItemType type)
 {
     return type.IsIn(PanelItemType.BlankItem);
 }
Exemple #4
0
        public bool CanRender(PanelItemType type)
        {
            var types = new[] { PanelItemType.FileUpload };

            return types.Contains(type);
        }
        public bool CanRender(PanelItemType type)
        {
            var types = new[] { PanelItemType.Calendar };

            return types.Contains(type);
        }
Exemple #6
0
 public bool CanRender(PanelItemType type)
 {
     return type.IsIn(PanelItemType.SelectButton);
 }
Exemple #7
0
        public bool CanRender(PanelItemType type)
        {
            var types = new[]{ PanelItemType.MultiLineText, PanelItemType.NonEditableText, PanelItemType.EditableText, PanelItemType.Password, PanelItemType.Label };

            return types.Contains(type);
        }
        public bool CanRender(PanelItemType type)
        {
            var types = new[] { PanelItemType.DropDown };

            return types.Contains(type);
        }
Exemple #9
0
 public bool CanRender(PanelItemType type)
 {
     return type.IsIn(PanelItemType.TreeView);
 }
Exemple #10
0
        public bool CanRender(PanelItemType type)
        {
            var types = new[] { PanelItemType.Image, PanelItemType.InfoIcon };

            return types.Contains(type);
        }
Exemple #11
0
 public bool CanRender(PanelItemType type)
 {
     return type.IsIn(PanelItemType.Calendar);
 }
Exemple #12
0
 public bool CanRender(PanelItemType type)
 {
     return type.IsIn(PanelItemType.MultiLineText, PanelItemType.NonEditableText, PanelItemType.EditableText, PanelItemType.Password, PanelItemType.Label);
 }
Exemple #13
0
 public bool CanRender(PanelItemType type)
 {
     return type == PanelItemType.Hidden;
 }