bootstrap-touchspin icon indicating copy to clipboard operation
bootstrap-touchspin copied to clipboard

A mobile and touch friendly input spinner component for Bootstrap.

Results 70 bootstrap-touchspin issues
Sort by recently updated
recently updated
newest added

I'm setting my value as 0 but it is being overridden by my min setting of 5. Is there a way to show initial setting of 0, then first step...

Hi there, Great Library. I initialise a text box to have **min** and **max** values, such as **10** and **50** and leave the input box blank with no value I...

Can you please let me know how to update the code in way that can fire an event as soon as the spinner reaches the Max? For example in [this...

It would be nice to have support for `readonly` input element. This could be done by changing ``` if (originalinput.is(':disabled')) { return; } ``` to ``` if (originalinput.is(':disabled,[readonly]')) { return;...

I have this config: ``` $("#demo0").TouchSpin({ min: 1200.22, max: null, step: 100, decimals: 2, boostat: 5, maxboostedstep: 10, postfix: '$', forcestepdivisibility: 'none' }); ``` initial value is set to `1200.22`,...

I'm getting this error: Uncaught TypeError: (intermediate value)(intermediate value)(...) is not a function I'd like to give more info, but I don't know what to add.

It would be nice if it was possible to set some default options for all Touchspins of a project. I'll quote from the DataTables' Website that perfectly describes what I...

The `change` event fires twice when pressing any of the the spinner buttons and 3 times when moving out the input field by pressing the `TAB` key after modifying its...

hey there, it would make sense if user unable to use alpha chars in a decimal spinner field. but right now I can use a-zA-Z when I manually set on...

I have the following $('#addAlertDollar').on('change', function () { var dollarValue = $('#addAlertDollar').val(); console.log("addAlertDollar change fired, dollar value is ", dollarValue); }); $("#addAlertDollar").TouchSpin({ min: 0, max: 1000000, step: 1, prefix: '$'...