Back to Devexpress

How to: Display the Customization Window

aspnet-4019-components-tree-list-examples-how-to-display-the-customization-window.md

latest636 B
Original Source

How to: Display the Customization Window

  • Dec 17, 2020

This example shows how to invoke the customization window. To do this, call the ASPxClientTreeList.ShowCustomizationWindow method. To hide this window, use the ASPxClientTreeList.HideCustomizationWindow method.

aspx
<ClientSideEvents Click="function(s, e) {
   if(!treeList.IsCustomizationWindowVisible()) {
      treeList.ShowCustomizationWindow();
      e.proceessOnServer = false;
   }
}"></ClientSideEvents>