* Serialize the form values to a string, outputting the formatted value as strings for each AutoNumeric-managed elements. * * @param {HTMLFormElement} form * @param {string} [serializedSpaceCharacter='+'] * @returns {string}
(form, serializedSpaceCharacter = '+')
| 9537 | * @returns {string} |
| 9538 | */ |
| 9539 | static _serializeFormatted(form, serializedSpaceCharacter = '+') { |
| 9540 | return this._serialize(form, false, 'formatted', serializedSpaceCharacter); |
| 9541 | } |
| 9542 | |
| 9543 | /** |
| 9544 | * Serialize the form values to a string, outputting localized strings for each AutoNumeric-managed element values. |
no test coverage detected