You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently for any html attributes that take bools or ints, such as <input readonly=true> or <input tabindex=2>, the generic Html.Attribute.attribute function is used for the conversion. For example, tabindex=2 will be converted to attribute "tabindex" "2" rather than the preferable tabindex 2 from Html.Attribute.tabindex.
For bool attributes, it should be able to handle the absence of an attribute value, such as <input readonly>, and convert that to input [readonly True] []