addCollectionWidget.js 1.0 KB

12345678910111213141516171819202122
  1. jQuery(document).ready(function () {
  2. jQuery('.add-another-collection-widget').click(function (e) {
  3. var list = jQuery(jQuery(this).attr('data-list-selector'));
  4. // Try to find the counter of the list or use the length of the list
  5. var counter = list.data('widget-counter') | list.children().length;
  6. // grab the prototype template
  7. var newWidget = list.attr('data-prototype');
  8. // replace the "__name__" used in the id and name of the prototype
  9. // with a number that's unique to your emails
  10. // end name attribute looks like name="contact[emails][2]"
  11. newWidget = newWidget.replace(/__name__/g, counter);
  12. // Increase the counter
  13. counter++;
  14. // And store it, the length cannot be used if deleting widgets is allowed
  15. list.data('widget-counter', counter);
  16. // create a new list element and add it to the list
  17. var newElem = jQuery(list.attr('data-widget-tags')).html(newWidget);
  18. newElem.appendTo(list);
  19. });
  20. });