Hey, so I'm trying to use a rad dropdown and a rad button that will, when a value is selected, link to a rad grid that is then automatically sorted by the value chosen.
<telerik:RadDropDownList ID="RadDropDownList1" runat="server" DataTextField="Org" DataValueField="Org" DefaultMessage="Org List" DataSourceID="orgDropDown" Skin="Office2010Black"></telerik:RadDropDownList><br /><telerik:RadButton ID="RadButton2" runat="server" Text="RadButton" ButtonType="LinkButton" Skin="Office2010Black"></telerik:RadButton>protected void RadButton2_Click(object sender, EventArgs e){ DropDownListItem selectedItem = RadDropDownList1.SelectedItem; if (selectedItem != null) { } }
I have this so far but I'm absolutely lost as to what to do next.
