Can any one help to multi level Clone solution for this Can I have multiple levels of nested cloned forms using SheepIt JQuery plugin?
any help would be greatly appreciated.
Can any one help to multi level Clone solution for this Can I have multiple levels of nested cloned forms using SheepIt JQuery plugin?
any help would be greatly appreciated.
Try this For reference
afterAdd:function (data) {
initializeAutotab($('input.autotab', data));
initializeDatePicker(data);
}
if you are using nested forms, you must specify the same afterAdd to the nested options.
Regardless, this is an alternative to using live/on.
also note that you want to use afterAdd instead of afterClone because afterClone seems to be before the content is actually added to the DOM.