* Serialize the form values to a string, outputting localized strings for each AutoNumeric-managed element values. * * @param {HTMLFormElement} form * @param {string} [serializedSpaceCharacter='+'] * @param {string|null} [forcedOutputFormat] If set, then this is the format that i
(form, serializedSpaceCharacter = '+', forcedOutputFormat = null)
| 9549 | * @returns {string} |
| 9550 | */ |
| 9551 | static _serializeLocalized(form, serializedSpaceCharacter = '+', forcedOutputFormat = null) { |
| 9552 | return this._serialize(form, false, 'localized', serializedSpaceCharacter, forcedOutputFormat); |
| 9553 | } |
| 9554 | |
| 9555 | /** |
| 9556 | * Generate an Array with the form values, outputting numeric strings for each AutoNumeric-managed element values. |
no test coverage detected