Ah, this is a different issue. There is an attribute displayed as radiobuttonlist in your product but the attribute is set to not required.
In Web\Store\AttributeSelection.ascx.cs adding the yellow background line around line 139 should fix it.
case "RadioButtonList": RadioButtonList rbl = new RadioButtonList(); rbl.ID = attrib.Attribute.Name; rbl.Style.Add("padding", "10px, 0px, 10px, 0px"); rbl.DataSource = GetValues(attrib); rbl.DataTextField = "DisplayValue"; rbl.DataValueField = "ProductAttributeValueId"; rbl.DataBind(); rbl.SelectedIndex = 0;
DotShoppingCart Staff
|