Hello,
This control appears to have a major problem:
I have this code:
<telerik:RadRadioButtonList ID=
"RadRadioButtonList1"
runat=
"server"
AutoPostBack=
"False"
>
<Items>
<telerik:ButtonListItem Text=
"ButtonListItem1"
Value=
"value1"
Selected=
"True"
/>
<telerik:ButtonListItem Text=
"ButtonListItem2"
Value=
"value2"
/>
</Items>
</telerik:RadRadioButtonList>
I then have button with the following code:
protected
void
RadButton1_Click(
object
sender, EventArgs e)
{
RadLabel1.Text = RadRadioButtonList1.SelectedItem.Value;
}
When this is run I get an error:
{"Object reference not set to an instance of an object."}
So the system does not recognise the items.