Mini Kabibi Habibi

Current Path : C:/Users/Public/Documents/DXperience 13.1 Demos/ASP.NET/VB/ASPxTreeListDemos/Shaping/
Upload File :
Current File : C:/Users/Public/Documents/DXperience 13.1 Demos/ASP.NET/VB/ASPxTreeListDemos/Shaping/Preview.aspx

<%@ Page Language="vb" MasterPageFile="~/Site.master" AutoEventWireup="true" CodeFile="Preview.aspx.vb"
	Inherits="Shaping_Preview" %>
<asp:Content ContentPlaceHolderID="ContentHolder" runat="Server">
	<dx:ASPxTreeList ID="treeList" runat="server" AutoGenerateColumns="False" DataSourceID="AccessDataSource1"
		Width="100%" KeyFieldName="ID" ParentFieldName="ParentID" PreviewFieldName="Notes">
		<Columns>
			<dx:TreeListDataColumn Caption="Name" FieldName="Common_Name" VisibleIndex="0" />
			<dx:TreeListDataColumn FieldName="Category" VisibleIndex="1" />
			<dx:TreeListDataColumn Caption="Species Name" FieldName="Species_Name" VisibleIndex="2" />
		</Columns>
		<Settings ShowPreview="True" GridLines="Both" SuppressOuterGridLines="true" />
		<SettingsBehavior ExpandCollapseAction="NodeDblClick" />
		<SettingsPager Mode="ShowPager" PageSize="3" Position="Top" />
		<Border BorderStyle="Solid" />
		<Styles>
			<PagerTopPanel>
				<BorderBottom BorderStyle="Solid" />
			</PagerTopPanel>
		</Styles>
	</dx:ASPxTreeList>
	<asp:AccessDataSource ID="AccessDataSource1" runat="server" DataFile="~/App_Data/Fish.mdb"
		SelectCommand="SELECT * FROM [BioLife]"></asp:AccessDataSource>
</asp:Content>