I have a RadGrid on my main page and I created a user control form to edit the data in the Grid. In that user control form I put another RadGrid the form with a GridDropDownColumn.
When you click "Edit" on the main grid, it'll bring up the user control form displaying the second RadGrid with all the items associated with current item that they're editing. Then when user adds an item to the second grid, they can select the item from the dropdown (there are over 60 different choices, and of those 60, you could have 60 items associated with that one item, hence why I went with another RadGrid in the user control form to add/delete).
On my User control form I put another SqlDataSource with a Select * From table Where ItemID = @ItemID
What I'm wondering is, is there a way to return the ItemID from the main Grid to the Grid on the user control form?
So that when you click "Edit" on the main page, it'll pass the ItemID to the user control from the main form and the select statement will only return all the items associated with that ID for the Grid on the user control form.
Thanks,
Brett