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

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

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

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

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

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