I have what seems like a simple problem, but I can't seem to come up with the best way to code my grid to the datasource that I require.
My application is very simple. It has a radtextbox prompt for the Customer #. It has a radbutton for "Find Sales Orders".
In my RadGrid I want to display a list of sales order information for the customer # that the user enters. When the user clicks on the
radbutton "Find Sales Orders", I want to execute my SQL code and populate the RadGrid with the resulting data table. My RadGrid will also have a
telerik:GridCleintSelectColumn, because I want the user to be able to select sales orders from the grid, and when they are finished selecting sales orders, I will
have another radbutton to store those selected sales orders into another SQL table (I've already found a telerik radgrid example that shows me how to code the
events for rowselect and rowdeselect and it persists when paging back and forward. The example also showed me how to loop through the grid and get a list of
selected key values). This example uses a hard coded sqldatasource with a built in SQL select statement. The data source that I
need must be driven from the customer # that the user enters and executed when the user clicks the "Find Sales Orders" button. Does Telerik have any
examples of what I'm describing? Everything I've found for examples so far has a built in select statement that isn't geared from other controls that a
user would typically enter on to the page.