Issue #36728 - Inputs inside disabled fieldset are not submited on remote: true forms

This commit is contained in:
Willian Gustavo Veiga 2019-07-25 16:07:11 -03:00
parent b1c27c059c
commit c3e786fc48
1 changed files with 1 additions and 0 deletions

View File

@ -11,6 +11,7 @@ Rails.serializeElement = (element, additionalParam) ->
inputs.forEach (input) ->
return if !input.name || input.disabled
return if input.closest('fieldset[disabled]')
if matches(input, 'select')
toArray(input.options).forEach (option) ->
params.push(name: input.name, value: option.value) if option.selected