Bug in frontends/default/javascripts/prototype/active_scaffold.js:187
When I call in_place_edit on a check-box in an embedded active scaffold (with the desire to override the update_column.js.rjs) the authenticity token and eid get merged into one parameter.
existing argument in the active_scaffold.js is:
if (span.up('div.active-scaffold').readAttribute('data-eid')) {
if (options['params'].length > 0) {
options['params'] += ";";
}
options['params'] += ("eid=" + span.up('div.active-scaffold').readAttribute('data-eid'));
}
options['params'] += ";"; should be changed to options['params'] += "&";
Bug in frontends/default/javascripts/prototype/active_scaffold.js:187
When I call in_place_edit on a check-box in an embedded active scaffold (with the desire to override the update_column.js.rjs) the authenticity token and eid get merged into one parameter.
existing argument in the active_scaffold.js is: if (span.up('div.active-scaffold').readAttribute('data-eid')) { if (options['params'].length > 0) { options['params'] += ";"; } options['params'] += ("eid=" + span.up('div.active-scaffold').readAttribute('data-eid')); }
options['params'] += ";"; should be changed to options['params'] += "&";