Hi,
I was wondering if any one could help me. This is the setup:-
SQL Datasource:-
Part of the Grid:-
The grid has a number of filter columns dates and combo boxs with their own datasources. The grid loads with out any problems if I set it to datasource with out any paremeters.
I've checked my sql and it works fine, I've debugged the stored procedure and its returning the results I want.
if anyone could help or point me in the right direction it would be a great help.
Thanks
I was wondering if any one could help me. This is the setup:-
SQL Datasource:-
| <asp:SqlDataSource ID="GridSqlDataSource" runat="server" ConnectionString="<%$ ConnectionStrings:connect %>" |
| SelectCommand="FilterProcMainv2" SelectCommandType="StoredProcedure"> |
| <SelectParameters> |
| <asp:Parameter Name="owner" Type="Int32" /> |
| <asp:Parameter DefaultValue="7" Name="team" Type="Int32" /> |
| </SelectParameters> |
| </asp:SqlDataSource> |
| <telerik:RadGrid ID="RadGrid1" runat="server" AutoGenerateColumns="False" DataSourceID="GridSqlDataSource" |
| GridLines="None" AllowFilteringByColumn="True" AllowPaging="True" AllowSorting="True" |
| PageSize="15" ShowGroupPanel="True"> |
| <MasterTableView DataSourceID="GridSqlDataSource" DataKeyNames="work_request_pk"> |
| <Columns> |
I've checked my sql and it works fine, I've debugged the stored procedure and its returning the results I want.
if anyone could help or point me in the right direction it would be a great help.
Thanks