Roberto S.
Add Action to Select modal create and update
I have a form with a Template entity and a Select field for the Sender entity which is a table with SMTP data for sending emails.
The Sender field is defined like this:
But I would like to add to the Actions of the modal a TEST CONFIG button to test the configuration.
The problem is that I don't see how to add this Action to the modal from the Select.
Any idea?
8 replies
Markdown editor with custom buttons
I'm working with the Markdown editor with custom buttons. My goal is to create a dropdown button in the editor that allows inserting placeholders into the text. These placeholders would later be substituted with the actual values of those variables.
Any advice, resources, or code examples would be greatly appreciated. Thanks in advance!
2 replies
SelectFilter by 2 level relationship
I want to make a SelectFilter by country in a table where I show vehicles.
The data model is as follows:
Vehicle
- id
- name
- place_id
Place
- id
- name
- country_id
Country
- id
- code
- name
That is, a Vehicle belongs to a Place and a Place has a Country.
My current code is as follows, the filter shows it but the changes are not applied:
Thanks
24 replies