I have a dijit number counter:
<div class="extra_field hide_on_load form_action_fy"> <label>Action Fiscal Year</label> <input name="form_action_fy" id="form_action_fy" data-dojo-type="dijit.form.NumberSpinner" data-dojo-props=" value:@ViewBag.fy, smallDelta:1, largeDelta:1, constraints:{min:2010,max:2020,places:0}" /> </div>
After this input loses focus, a comma is added. How to prevent the display of this comma? That is, I do not want 2.011, but rather 2011.
Thanks! Eric
user290043
source share