We used the following code to auto-click the autofill button for a collection on a form. It worked in 10.1, but no longer does in 10.2.1:
Following code work in Forms 10.1:
$(document).ready(function () {
function autofill() {
$('.autofill').trigger('click');
}
$('.lookupCondition').change(autofill);
});
$('.cf-collection-append').click(function(){
function autofill() {
$('.autofill').trigger('click');
}
$('.lookupCondition').change(autofill);
});
After upgrade to 10.2.1, only the first set in the collection is functioning - any further additions to the collection won't work. Can anybody point out the flaw? It was working in 10.1, so curious why it would stop now in 10.2.1.
Thanks, all!