mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
4b65fbb50d
- CommonForm clear tempname on focus - remove inline editing of inline docs - remove "inline" config on schema fields - show select placeholder only if no label - rename inlineEditDisplayField to linkDisplayField
24 lines
437 B
JSON
24 lines
437 B
JSON
{
|
|
"name": "Location",
|
|
"label": "Location",
|
|
"isSingle": false,
|
|
"isChild": false,
|
|
"naming": "manual",
|
|
"fields": [
|
|
{
|
|
"fieldname": "name",
|
|
"label": "Location Name",
|
|
"fieldtype": "Data",
|
|
"required": true
|
|
},
|
|
{
|
|
"fieldname": "address",
|
|
"label": "Address",
|
|
"fieldtype": "Link",
|
|
"target": "Address",
|
|
"create": true
|
|
}
|
|
],
|
|
"quickEditFields": ["item", "address"]
|
|
}
|