* Generate an Array with the form values, outputting the formatted value as strings for each AutoNumeric-managed elements. * * @param {HTMLFormElement} form * @param {string} [serializedSpaceCharacter='+'] * @returns {Array}
(form, serializedSpaceCharacter = '+')
| 9571 | * @returns {Array} |
| 9572 | */ |
| 9573 | static _serializeFormattedArray(form, serializedSpaceCharacter = '+') { |
| 9574 | return this._serialize(form, true, 'formatted', serializedSpaceCharacter); |
| 9575 | } |
| 9576 | |
| 9577 | /** |
| 9578 | * Generate an Array with the form values, outputting localized strings for each AutoNumeric-managed element values. |
no test coverage detected