Props

trait Props[P[_, _]]
Type Params
P

DOM Property, canonically com.raquo.domtypes.generic.keys.Prop

class Object
trait Matchable
class Any

Value members

Concrete fields

lazy val checked: P[Boolean, Boolean]

When the value of the type attribute is "radio" or "checkbox", this property determines whether it is checked or not.

When the value of the type attribute is "radio" or "checkbox", this property determines whether it is checked or not.

See also com.raquo.domtypes.generic.defs.reflectedAttrs.ReflectedHtmlAttrs.defaultChecked

lazy val indeterminate: P[Boolean, Boolean]

In addition to the checked and unchecked states, there is a third state a checkbox can be in: indeterminate. This is a state in which it's impossible to say whether the item is toggled on or off.

In addition to the checked and unchecked states, there is a third state a checkbox can be in: indeterminate. This is a state in which it's impossible to say whether the item is toggled on or off.

https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/checkbox#Indeterminate_state_checkboxes

lazy val selected: P[Boolean, Boolean]

Indicates whether an

Indicates whether an

See also com.raquo.domtypes.generic.defs.reflectedAttrs.ReflectedHtmlAttrs.defaultSelected

lazy val value: P[String, String]

Current value of the element. This is different from value attribute, which contains the initial value of the element. More info: https://stackoverflow.com/a/6004028/2601788

Current value of the element. This is different from value attribute, which contains the initial value of the element. More info: https://stackoverflow.com/a/6004028/2601788

See also com.raquo.domtypes.generic.defs.reflectedAttrs.ReflectedHtmlAttrs.defaultValue