Hi!
How do I go about binding a CustomTableDataSource with a Drop-Down List?
<cms:CustomTableDataSource ID="ctdsCampuses"
CustomTable="general.campuses"
SelectedColumns="Name, ItemID"
OrderBy="Name ASC"
runat="server" />
<asp:DropDownList ID="ddlCampusSelect" DataSourceID="ctdsCampuses" runat="server">
</asp:DropDownList>
Using this, I get the following error:
The DataSourceID of 'ddlCampusSelect' must be the ID of a control of type IDataSource. 'ctdsCampuses' is not an IDataSource.
I looked in the CustomTable and DataSource examples, but didn't see an answer.
Thanks!
-Eric