Bob Knothe
Bob Knothe
How are you settings the min max values via options or HTML5 data? Robert (Bob) Knothe On Feb 5, 2013, at 11:19 AM, apuchkov [email protected] wrote: > When I try...
Apuchkov,First thank you for point out the glich.Essentially the plugin is functioning as designed, the problem is me!While the input that you entered values has min max value set between ...
Have you tried the new version 1.9.15? https://github.com/BobKnothe/autoNumeric or go here http://www.decorplanit.com/plugin/ there are some compatibility issues so read the instruction carefully
Mouish, Thanks for the heads up - I will look for a fix. Bob On 12/9/2012 5:53 AM, Mouish wrote: > Hi, > > When I do this : >...
Mouish, The problem is autoNumeric treats the input as a string so is remove non numeric characters from the string "1e-7" becomes "17". If you use a string that represents...
Mouish, I was think of approaching this from a different angle. Consider the following: ``` if (value < .000001){ value = (value + 1).toString(); // add 1 which forces ```...
M. Yes I already addressed that by doing this - i should have emailed you eariler! ``` if (value < 0.000001 && value > 0) { value = (value +...
M. I also made a couple other changes to version 1.8.0 http://www.decorplanit.com/plugin/autoNumeric-1.8.0.htm Hope to release this weekend. Bob On 1/4/2013 8:38 AM, Mouish wrote: > Good idea, but take care...
Robert, Thank you for your interest and offer to help. Before you jump in you may want to look at the latest version I have been working on (http://www.decorplanit.com/plugin/autoNumeric-1.8.0.htm). It...
Todd, Glad you found a solution. I have been working on a major update. It is basically done, i just need to update the documentation (http://www.decorplanit.com/plugin/autoNumeric-1.8.0-beta.htm). Let me know if...