Exemplo n.º 1
0
 public EasyUITreeNode(String _id, String _virtualid, String _text, String _parentid, String _hieid, String _desc, int _type, int _seq, int _qty, int _expand, int _required, int _default, int _configurationrule)
 {
     id                = _id;
     virtualid         = _virtualid;
     text              = _text;
     parentid          = _parentid;
     hieid             = _hieid;
     desc              = _desc;
     type              = _type;
     qty               = _qty;
     seq               = _seq;
     this.children     = new List <EasyUITreeNode>();
     isexpand          = _expand;
     isrequired        = _required;
     isdefault         = _default;
     configurationrule = _configurationrule;
     _state            = treeStates.open;
 }
Exemplo n.º 2
0
 public EasyUITreeNode()
 {
     id                = "";
     virtualid         = "";
     text              = "";
     desc              = "";
     hieid             = "";
     parentid          = "";
     this.children     = new List <EasyUITreeNode>();
     seq               = 0;
     type              = -1;
     qty               = 1;
     isdefault         = 0;
     isrequired        = 0;
     isexpand          = 0;
     configurationrule = 0;
     _state            = treeStates.open;
 }