Hi,
I have a dropdown list:
<telerik:GridDropDownColumn DataField="GroundGear" DataSourceID="getGroundGears" HeaderText="Ground Gear" ListTextField="GroundGearName" ListValueField="GroundGearCode" UniqueName="GroundGear" ColumnEditorID="GroundGear" Reorderable="False" Visible="false"></telerik:GridDropDownColumn>
With the datasource of "getGroundGears", embedded in the .aspx page:
<
asp:SqlDataSource ID="getGroundGears" runat="server"
ConnectionString="<%$ ConnectionStrings:FisheriesConnectionString %>"
SelectCommand="SELECT [Name] AS GroundGearName, [Code] AS GroundGearCode FROM [vwDisGroundGearAll] ORDER BY [DisplayOrder]">
</asp:SqlDataSource>
Though I would like the datasource for the dropdown to point to the method DisGroundGearAllTableAdapter.GetDisGroundGearAll.
How can I get the datasource to point to my tableadapters?
Thanks, Ida