We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi BForms Team, is it possible to disable a RadioButtonList?
I trided something like this but it does not seem to have an effect:
public class RegisterModel { [Required] [Display(Name = "Receive email notifications", Description = "Your register...")] [BsControl(BsControlType.RadioButtonList)] public BsSelectList<NotificationType?> NotificationList { get; set; } ... } <div class="form-group"> @Html.BsLabelFor(m => m.NotificationList) <div class="input-group"> @Html.BsSelectFor(m => m.NotificationList, new { disabled = "disabled" }) @Html.BsValidationFor(m => m.NotificationList) </div> </div>
Thanx for having a Look at it
Regards Dumitru
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi BForms Team,
is it possible to disable a RadioButtonList?
I trided something like this but it does not seem to have an effect:
Thanx for having a Look at it
Regards Dumitru
The text was updated successfully, but these errors were encountered: