Use your own custom buttons for repeating elements
This form illustrates how you can replace the add and delete buttons that are used for repeating elements.
Add button elements to the form and set them as follow. Style them via CSS.
Attention: Please note that you must not use the "Repeat" option in the properties panel of the designer, or this will not work.
// Use the dynamic function to set the buttons that should be used. $('[name="tfMail"]').dynamic({ delButton: $('[name="btnDel"]'), addButton: $('[name="btnAdd"]'), minSize: 1, maxSize: 10, });
// Use the dynamic function to set the buttons that should be used.
$('[name="tfMail"]').dynamic({
delButton: $('[name="btnDel"]'),
addButton: $('[name="btnAdd"]'),
minSize: 1,
maxSize: 10,
});
Email address