Hello,
Upgraded the CRM to v10.0.
Created a "Cascading Select" field in the custom entity (Contract) using the Contact link.

The functionality works correctly. However, after deleting the created "Cascading Select" field, the custom entity record is no longer accessible and cannot be opened.

No error messages are logged in the data/logs directory. Browser console says:

custom\Espo\Custom\Resources\metadata\logicDefs\Co ntract.json file after creating "Cascading select" has this code:
after deleting "Cascading select" has this code:
Espo version 10.0
PHP version 8.3.30
Database MySQL
Upgraded the CRM to v10.0.
Created a "Cascading Select" field in the custom entity (Contract) using the Contact link.
The functionality works correctly. However, after deleting the created "Cascading Select" field, the custom entity record is no longer accessible and cannot be opened.
No error messages are logged in the data/logs directory. Browser console says:
custom\Espo\Custom\Resources\metadata\logicDefs\Co ntract.json file after creating "Cascading select" has this code:
Code:
{
"cascadingFields": {
"contact": {
"items": [
{
"localField": "account",
"foreignField": "account",
"matchRequired": true
}
]
}
}
}
after deleting "Cascading select" has this code:
Code:
{
"cascadingFields": {
"contact": null
}
}
PHP version 8.3.30
Database MySQL

Comment