This example demonstrates how to disable parent node selection and allow users to select only one leaf node within the ASPxTreeList control.
Files to Review
- Default.aspx (VB: Default.aspx)
- Default.aspx.cs (VB: Default.aspx.vb)
Example Code
ASPx<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<%@ Register Assembly="DevExpress.Web.ASPxTreeList.v13.1, Version=13.1.14.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a"
Namespace="DevExpress.Web.ASPxTreeList" TagPrefix="dxwtl" %>
<%@ Register Assembly="DevExpress.Web.v13.1, Version=13.1.14.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a"
Namespace="DevExpress.Web" TagPrefix="dxe" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Save Selection" />
<br />
<asp:Label ID="Label1" runat="server" Text="Last Saved Node: "></asp:Label>
<asp:Label ID="Label2" runat="server" Text="None"></asp:Label><br />
<br />
<dxwtl:ASPxTreeList ID="ASPxTreeList1" runat="server" AutoGenerateColumns="False"
DataSourceID="AccessDataSource1" KeyFieldName="ID" ParentFieldName="PARENTID" OnDataBound="ASPxTreeList1_DataBound" OnSelectionChanged="ASPxTreeList1_SelectionChanged">
<Columns>
<dxwtl:TreeListTextColumn FieldName="DEPARTMENT" VisibleIndex="0">
</dxwtl:TreeListTextColumn>
<dxwtl:TreeListTextColumn FieldName="LOCATION" VisibleIndex="1">
</dxwtl:TreeListTextColumn>
</Columns>
<SettingsSelection Enabled="True" />
<SettingsBehavior ProcessSelectionChangedOnServer="True" />
</dxwtl:ASPxTreeList>
</div>
<asp:AccessDataSource ID="AccessDataSource1" runat="server" DataFile="~/App_Data/Departments.mdb"
SelectCommand="SELECT [ID], [PARENTID], [DEPARTMENT], [LOCATION] FROM [Departments]">
</asp:AccessDataSource>
</form>
</body>
</html>
C#using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using DevExpress.Web.ASPxTreeList;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void ASPxTreeList1_DataBound(object sender, EventArgs e) {
DisableParentNodeSelection();
}
protected void DisableParentNodeSelection() {
// Iterates through all nodes and prevents the display of selection check boxes within parent nodes
TreeListNodeIterator iterator = ASPxTreeList1.CreateNodeIterator();
TreeListNode node = iterator.GetNext();
while (node != null) {
node.AllowSelect = !node.HasChildren;
node = iterator.GetNext();
}
}
public string LastSelectedNode
{
get
{
string key = Session["PrevSelectedNodeKey"] as string;
if (String.IsNullOrEmpty(key))
key = "-1";
return key;
}
set {
Session["PrevSelectedNodeKey"] = value;
}
}
protected void ASPxTreeList1_SelectionChanged(object sender, EventArgs e) {
ASPxTreeList treeList = sender as ASPxTreeList;
if (treeList.SelectionCount == 1) // One node is selected within the control
LastSelectedNode = treeList.GetSelectedNodes()[0].Key;
if (treeList.SelectionCount > 1) { // Applies selection to the last selected node, if two nodes are selected
TreeListNode prevSelectedNode = treeList.FindNodeByKeyValue(LastSelectedNode);
if (prevSelectedNode != null)
{
prevSelectedNode.Selected = false;
LastSelectedNode = treeList.GetSelectedNodes()[0].Key;
}
}
}
protected void Button1_Click(object sender, EventArgs e) {
if (ASPxTreeList1.SelectionCount == 0)
Label2.Text = "None";
else {
TreeListNode node = ASPxTreeList1.GetSelectedNodes()[0];
Label2.Text = node["Department"].ToString();
}
}
}