djust-theming | Demo Home Components | Gallery Storybook Editor Diff

Dependent Select

python component Forms 13 params
PREVIEW
Preview not available — component requires runtime dependencies or no examples defined.
USAGE
python
from djust_components.components.dependent_select import DependentSelect

component = DependentSelect(name='',
    parent='',
    source_event='',
    label='',
    placeholder='Select...',
    value='',
    options=None,
    loading=False,
    disabled=False,
    required=False,
    error='',
    custom_class='',
    kwargs)
html = component.render()
PARAMETERS 13
NameTypeDefault
name <class 'str'> ''
parent <class 'str'> ''
source_event <class 'str'> ''
label <class 'str'> ''
placeholder <class 'str'> 'Select...'
value <class 'str'> ''
options typing.Optional[list] None
loading <class 'bool'> False
disabled <class 'bool'> False
required <class 'bool'> False
error <class 'str'> ''
custom_class <class 'str'> ''
kwargs