Hello
We are using the tabs logic from Rapido and we tried to replace the element below with a component as per example below:
<input type="radio" class="tabs__trigger" name="productTabs" id="@variants.GetString("Ecom:Product.VariantID")" onchange="bLazy.revalidate()" @isChecked />
Using the RenderFieldListOption component doesn't allow to insert a new cssClass. Currently it has the "form__control" and "dw-mod" classes which doesn't trigger the tabs and displays normal radio buttons.
It would be useful to allow adding custom css classes and use the CssClass property as per example below:
@RenderFieldListOption(new FieldListOption { Type = FieldListOptionType.RadioButton, Name = "productTabs", Checked = isChecked, CssClass = "tabs__trigger", Id = variants.GetString("Ecom:Product.VariantID"), OnChange = "bLazy.revalidate()" })