Hi @Margo,
I have a form that has normal fields of the list. Based on the choices/data, I might have to fill in another set of fields. These fields can be extensive and have also impact on other fields in the form.
How to create repeating sections - Forms - Community
This kind of problem has been discussed here too. Since Plusmail is not providing the solution, I am trying to make the best out of Plumsail and JS.
That being said, you am using the below to clone the section for your reference:
const container = document.getElementById("SimpleReaptorsSection");
const originalSection = $(`#${containerId}`)[0].querySelector(".repeatable-section");
// Clone the first section
const newSection = originalSection.cloneNode(true);
// Append the new section to the container
container.appendChild(newSection);/
Where "SimpleReaptorsSection" is just a html placeholder in plumsail and "repeatable-section" is class given to a grid of fields (as shown in the photo of the original question).
The cloned grids however are not clickable. How can I make those editable? I hope you can replicate this and help me further.
Thanks in advance!