public ListExtender(ListExtenderXml xml, WebControl targetControl)
        {
            _targetControl = targetControl;
            Name = xml.Name;
            _type = xml.Type;
            _items = xml.Items;
            _filteredLoadOnly = xml.FilteredLoadOnly;

            _extenderXml = xml;
        }
 public ListExtenderXml(string targetControlName, Globals.CallEntry.ListType type, List<ListExtenderItem> itemList)
 {
     _targetControlName = targetControlName;
     _type = type;
     _items = itemList;
 }
 public ListExtender(WebControl targetControl, Globals.CallEntry.ListType type)
 {
     _targetControl = targetControl;
     _type = type;
 }