Is there a way to hide radio buttons inside a RadioButtonList control programmatically?
Under the hood, you can access the attributes of the item and assign it a CSS style.
So you should be able to then programmatically assign it by specifying:
RadioButtonList.Items(1).CssClass.Add("visibility", "hidden")
and get the job done.
'CssClass' is not a member of 'System.Web.UI.WebControls.ListItem'.
Sorry :P –
Rippy Here's how you have to apply a style attribute to a listitem:
RadioButtonList.Items(1).Attributes.Add("style", "display:none")
- OR -
RadioButtonList.Items(1).Attributes.Add("style", "visibility:hidden")
Why not add and remove the radio buttons as needed?
RadioButtonList.Items.Add("Item Name" or index);
RadioButtonList.Items.Remove("Item Name" or index);
Try This:
RadioButtonList.Items.Remove(RadioButtonList.Items.FindByValue("3"));
If you mean with JavaScript, and if I remember correctly, you've got to dig out the ClientID properties of each <input type="radio" ...> tag.
Have you tried to hide it through the itemdatabound event onload or do you need it to hide after it loads?
I haven't tested it, but I'd assume (for C#)
foreach(ListItem myItem in rbl.Items)
{
if(whatever condition)
myItem.Attributes.Add("visibility","hidden");
}
Another answer to not visibility inside a RadioButtonList.
Try this code:
RadioButtonList.Items(1).CssClass.Add("display", "none");
and get the job to no display RadioButtonList in layout.
© 2022 - 2024 — McMap. All rights reserved.
'CssStyle' is not a member of 'System.Web.UI.WebControls.ListItem'.
I understand setting visibility, but not sure where the CssStyle property is coming from... – Rippy