0

ASPX

<dx:ASPxTreeList ID="ASPxTreeListLocations" runat="server" AutoGenerateColumns="False"
    DataSourceID="SqlDataSourceUserMetersTree" KeyFieldName="sno" ParentFieldName="ParentId"
    Width="300px" SettingsSelection-Recursive="true" Theme="Office2010Black">
    <Columns>
        <dx:TreeListTextColumn FieldName="Text" VisibleIndex="0" Caption="Lokasyon">
        </dx:TreeListTextColumn>
    </Columns>
    <SettingsBehavior AutoExpandAllNodes="True" />
    <SettingsSelection Enabled="True" />
</dx:ASPxTreeList>
<asp:SqlDataSource ID="SqlDataSourceUserMetersTree" runat="server" ConnectionString="<%$ ConnectionStrings:ConnectionString %>">
</asp:SqlDataSource>

コードビヒド

protected void Page_Load(object sender, EventArgs e)
{
    SqlDataSourceUserMetersTree.SelectCommand = "SELECT * FROM Tree";
    ASPxTreeListLocations.DataBind();
}

質問:

コードはうまく機能しています。再帰的な選択をしたいのですが、このプロパティが機能していません。aspx 側で SqlDataSource selectCommand を定義すると、機能します。解決策が見つかりません。エラー メッセージはありません。何かアドバイス?

ありがとう...

4

1 に答える 1