default_checked property

default_checked property

When type has the value “radio” or “checkbox”, this represents the HTML checked attribute of the element. The value of this attribute does not change if the state of the corresponding form control, in an interactive user agent, changes. See the checked attribute definition in HTML 4.01.

Definition:

@property
def default_checked(self):
    ...
@default_checked.setter
def default_checked(self, value):
    ...

See Also