feat(customize_form): add 'Allow Bulk Edit' option for child table fields
This commit is contained in:
parent
bbfcaf67f2
commit
299a15652f
2 changed files with 11 additions and 0 deletions
|
|
@ -24,6 +24,7 @@
|
|||
"track_views",
|
||||
"allow_auto_repeat",
|
||||
"allow_import",
|
||||
"allow_bulk_edit",
|
||||
"queue_in_background",
|
||||
"naming_section",
|
||||
"naming_rule",
|
||||
|
|
@ -222,6 +223,14 @@
|
|||
"fieldtype": "Check",
|
||||
"label": "Allow Import (via Data Import Tool)"
|
||||
},
|
||||
{
|
||||
"default": "1",
|
||||
"depends_on": "istable",
|
||||
"description": "Enable bulk edit for child table fields in Form view.",
|
||||
"fieldname": "allow_bulk_edit",
|
||||
"fieldtype": "Check",
|
||||
"label": "Allow Bulk Edit"
|
||||
},
|
||||
{
|
||||
"depends_on": "email_append_to",
|
||||
"fieldname": "subject_field",
|
||||
|
|
|
|||
|
|
@ -42,6 +42,7 @@ class CustomizeForm(Document):
|
|||
|
||||
actions: DF.Table[DocTypeAction]
|
||||
allow_auto_repeat: DF.Check
|
||||
allow_bulk_edit: DF.Check
|
||||
allow_copy: DF.Check
|
||||
allow_import: DF.Check
|
||||
autoname: DF.Data | None
|
||||
|
|
@ -744,6 +745,7 @@ doctype_properties = {
|
|||
"track_views": "Check",
|
||||
"allow_auto_repeat": "Check",
|
||||
"allow_import": "Check",
|
||||
"allow_bulk_edit": "Check",
|
||||
"show_name_in_global_search": "Check",
|
||||
"show_preview_popup": "Check",
|
||||
"default_email_template": "Data",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue