mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Issue #36728 - Inputs inside disabled fieldset are not submited on remote: true forms
This commit is contained in:
parent
b1c27c059c
commit
c3e786fc48
1 changed files with 1 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue