I'd like to report a bug in URL field.
THE ISSUE:
For example you add two more row to URL field on submisson form. Now you see three url field. Then you delete second field. Now if you add one more row the socond and third field will get the same key so if you save record only the first and third url will be saved.
This is because of the key calculation in url.js in row 113
var key = $('#url-list'+ this.id).children('div.url-item').length;
I think remove button .click function must be extended with key recalculation. Unfortunatly my javascript knowledge is not enough for that :(
I'd like to report a bug in URL field.
THE ISSUE:
For example you add two more row to URL field on submisson form. Now you see three url field. Then you delete second field. Now if you add one more row the socond and third field will get the same key so if you save record only the first and third url will be saved.
This is because of the key calculation in url.js in row 113
var key = $('#url-list'+ this.id).children('div.url-item').length;
I think remove button .click function must be extended with key recalculation. Unfortunatly my javascript knowledge is not enough for that :(