Dear All,
I was developed small project using Angular 6 and ASP .Net MVC 5 with Rest API.
I was trying to use jquery function like datepicker and datatable which is I am not able to use it.
I have used following steps
npm install jquery — save
in Angular.json :-
"scripts": [ "../node_modules/jquery/dist/jquery.min.js" ]
in typescript file :-
import * as $ from 'jquery';
- ngOnInit() {
- $(document).ready(function () {
- $("#demo").datepicker({
- dateFormat: "yyyy-mm-dd"
- });
- });
- }
Please let me know easy solution on this problem.
Thank you in advanced
Regards.
Gajendra JangidPosted Jul 6, 2019, 12:32 AM
Sanwar RanwaPosted Jul 5, 2019, 8:47 AM