We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a problem where i have a left menu bar that is folded by default, when i unfold the menu bar the digit ket moved away from the dial.
Here is my layout in the html:
And my js to generate it! $(document).ready(function(){ console.log("Document is loaded!"); $(function() { $("#vacKnob").knob({ 'min':0, 'max':30, 'step':'.1', 'angleArc': 250, 'angleOffset':-125, 'width':100, 'height':100, 'fgColor':'#71b444', 'lineCap':'round', 'readOnly':true, }); }); $("#vacKnob").val(0).trigger('change'); });
The text was updated successfully, but these errors were encountered:
Also another question, how can i modify the max value once the main setup is done ?
Sorry, something went wrong.
if you use the plugin in this way you can improve html input number everywhere : #365
No branches or pull requests
I have a problem where i have a left menu bar that is folded by default, when i unfold the menu bar the digit ket moved away from the dial.
Here is my layout in the html:
And my js to generate it!
$(document).ready(function(){
console.log("Document is loaded!");
$(function() {
$("#vacKnob").knob({
'min':0,
'max':30,
'step':'.1',
'angleArc': 250,
'angleOffset':-125,
'width':100,
'height':100,
'fgColor':'#71b444',
'lineCap':'round',
'readOnly':true,
});
});
$("#vacKnob").val(0).trigger('change');
});
The text was updated successfully, but these errors were encountered: