Im trying to use the jquery ui spinner for a minutes input. Currently it works 0 - 60 but I want the single digits to be 00,01..09 double digits.
According to the docs I should use globalize plugin and set numberFormat: 'mm' but that threw an error. In the console I looked at globalize js and 'mm' option is inside 'formatDate'. So I tried:
$('.minute-spinner').spinner({culture: "en-US",formatDate: "mm"});
but that didn't do anything. Anyone know how to make a spinner always show 2 digits?