Exemplo n.º 1
0
        public string _ItemTemplate;//列的渲染模板

        public FieldConfig(string name, string display, int width, bool sortable, FieldConfigAlign align, bool checkField, bool hide, bool toggle, string itemTemplate)
        {
            this._name         = name;
            this._display      = display;
            this._width        = width;
            this._sortable     = sortable;
            this._align        = align;
            this._hide         = hide;
            this._toggle       = toggle;
            this._checkField   = checkField;
            this._ItemTemplate = itemTemplate;
        }
Exemplo n.º 2
0
 public FieldConfig(string name, string display, int width, bool sortable, FieldConfigAlign align, bool checkField, bool hide, bool toggle)
     : this(name, display, width, sortable, align, checkField, hide, toggle, null)
 {
 }
Exemplo n.º 3
0
 public FieldConfig(string name, string display, int width, bool sortable, FieldConfigAlign align, bool checkField)
     : this(name, display, width, sortable, align, checkField, false, true, null)
 {
 }