-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
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
JQuery-Knob - Angular 5 #357
Comments
Hey dude, there is a directive that may help you: https://radmie.github.io/ng-knob/ (Duplicate of: #350) |
I use Angular6 in my project. Using JQuery-Knob in Angular6 // TestComponent
import {Component, OnInit} from '@angular/core';
import * as $ from 'jquery';
import 'jquery-knob';
@Component({
templateUrl: './test.component.html'
})
export class TestComponent implements OnInit {
ngOnInit(): void {
$(function() {
$(".dial").knob();
});
}
} <!- test.component.html ->
<input type="text" value="75" class="dial"> I write a demo for it: |
That is for AngularJS (however, thanks for the link to the awesome lib that I'm thinking about porting myself) |
I forked and ported this library to Angular (7). See here: https://github.com/flyer1/ng2-knob |
Hi guys, is it possible to us this library in angular 5?
The text was updated successfully, but these errors were encountered: