job_selector class
Select jobs from the list of all job entities.
Methods¶
__init__() ¶
__init__(
value=None,
show_id=True,
show_submitted_label=True,
show_submitted_id=False,
show_submission_id=False,
show_date=True,
show_cancel=True,
show_delete=True,
on_change=None,
height="50vh",
on_details=None,
id=None,
class_name=None,
) -> None
Create a new job_selector
element.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
|
Union[Job,list[Job]]
|
Bound to the selected s, or None if there is none. |
None
|
|
bool
|
If False, the |
True
|
|
bool
|
True
|
|
|
bool
|
False
|
|
|
bool
|
If True, the submission id is shown in the selector. |
False
|
|
bool
|
If False, the |
True
|
|
bool
|
If False, the Cancel buttons are not shown in the selector. |
True
|
|
bool
|
If False, the Delete buttons are not shown in the selector. |
True
|
|
Union[str, Callable]
|
None
|
|
|
str
|
The maximum height, in CSS units, of the control. |
50vh
|
|
Union[str, Callable, bool]
|
The name of a function that is triggered when the details icon is pressed.
If False, the icon is not shown. |
None
|
|
str
|
The identifier that will be assigned to the rendered HTML component. |
None
|
|
str
|
The list of CSS class names associated with the generated HTML Element. |
None
|