-
Hello! I customized a side panel so that a certain user profile could, with limitations, edit and add records in a table related to the one I'm working on at the moment. As a limitation, in the side panel, the "main table" relationship field cannot be edited. This field I pass through a "state". It happens that the refresh in the "state" change only occurs when the side panel is closed. How do I refresh the side panel without having to close it (this is necessary because not changing it leads to registration errors). Generating an action right after clicking on the link that opens the side panel is not a good option because, when the first click is made, the panel opens correctly, but from then on it locks the panel and needs two clicks to open it again (and with the correct field charge). How to proceed? Grateful |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @Bitello The nesting of components will be important for this one. Consider the following example where you have a table of Employees and a side panel that contains a 'create' form for a new Job. The way to achieve this, you will have a nested structure along the lines of this: So here the form for the Jobs table sits a level above the Employees table. Therefore in our table icon component we can define actions as follows:
|
Beta Was this translation helpful? Give feedback.
Hi @Bitello
The nesting of components will be important for this one.
Consider the following example where you have a table of Employees and a side panel that contains a 'create' form for a new Job.
The way to achieve this, you will have a nested structure along the lines of this:
So here the form for the Jobs table sits a level above the Employees table. Therefore in our table icon component we can define actions as follows: