solid-ui icon indicating copy to clipboard operation
solid-ui copied to clipboard

'formatter' Number Field Property

Open brownhoward opened this issue 6 years ago • 2 comments

User Story

As a Form Designer, I can optionally set the formatter to apply to a number field, so I can correctly display the number.

Acceptance Criteria

  1. In a Form Model, a 'formatter' property can be optionally defined for a NumberField. For example:
ui:formatter "####.#";
  1. When the form is rendered, the formatter is used to display the number.

brownhoward avatar Nov 24 '19 21:11 brownhoward

Is there a standard for the format string? There is always printf which of course was blessed by being built into the python language as well. Use that -- ie "4.2d" rather than ####.## ? Got a good js library?

timbl avatar May 01 '20 16:05 timbl

Maybe https://www.npmjs.com/package/sprintf-js is Bsd-3

timbl avatar May 01 '20 16:05 timbl