Beispiel #1
0
        protected override void OnRemoveComplete(int index, object value)
        {
            base.OnRemoveComplete(index, value);

            OwnerTreeList.FilterNodes();
            OwnerTreeList.SetFilterPanelVisibility(ToString() != "");
        }
Beispiel #2
0
        protected override void OnClearComplete()
        {
            base.OnClearComplete();

            OwnerTreeList.FilterNodes();
            OwnerTreeList.SetFilterPanelVisibility(ToString() != "");
        }
Beispiel #3
0
 protected void OnItemPropertyChanged(object sender, FilterConditionPropertyChangedEventArgs e)
 {
     if (ToString() != "")
     {
         OwnerTreeList.FilterNodes();
         OwnerTreeList.SetFilterPanelVisibility(true);
     }
 }