Author: therichpost

  • Render Json data in Datatables with Angularjs

    ,

    Hello to all, In this post, I will tell you, How to Render Json data in Datatables with Angularjs? Angularjs and jQuery Datatables both are very famous. Here is working and tested code for Render Json data in Datatables with Angularjs: <!DOCTYPE html> <html> <head> <script src=”https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js”></script> <script src= “https://cdn.datatables.net/1.10.19/js/jquery.dataTables.min.js”></script> <link rel=”stylesheet” href=”https://cdn.datatables.net/1.10.19/css/jquery.dataTables.min.css”> <script src= “http://ajax.googleapis.com/ajax/libs/angularjs/1.2.26/angular.min.js”></script> </head> <body…

    datatables-in-angularmaterial
  • Open Bootstrap Modal Angularjs ng-click event

    Hello to all, In this post, I will tell you, How to open Open Bootstrap Modal Angularjs ng-click event? Angularjs and Bootstrap both are very famous. Here is working and tested code for Open Bootstrap Modal Angularjs ng-click event: <!DOCTYPE html> <html> <head> <link rel=”stylesheet” href=”https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css”> <script src=”https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js”></script> <script src=”https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js”></script> <script src= “http://ajax.googleapis.com/ajax/libs/angularjs/1.2.26/angular.min.js”></script> </head> <body ng-app=”myApp”> <!–Angular…

    How to make business template with Bootstrap 4 and Angular 9?
  • How to generate PDF from html view file in laravel? the rich post

    Hello to all, welcome to therichpost.com. In this post, I will tell you, How to generate PDF from html view file in laravel? Here are the following steps to generate PDF from html view file in laravel? the rich post: 1.  Need to install laravel-dompdf package with below command: composer require barryvdh/laravel-dompdf 2. After installing laravel-dompdf package you…

    Laravel 7.2 routing with route group auth guard check with prefix
  • Laravel pagination using mysql limit offset

    Hello to all, welcome to therichpost.com. In this post, i will tell you, Laravel pagination using mysql limit offset. Laravel is the top mvc framework in php. Here is working and tested code for Laravel pagination using mysql limit offset: // Paginate $limit = 2; //$_GET[‘page’] – get page number form url like – www.therichpost.com?page=1 $offset =…

    Laravel 7.2 routing with route group auth guard check with prefix
  • Jquery datepicker with text input that does not allow user input – jQuery trick 9

    Hello to all, welcome to therichpost.com. In this post, I will tell you, Jquery datepicker with text input that does not allow user input. Here is the working demo code for Jquery datepicker with text input that does not allow user input:   If you have any query related to this post, then feel free to ask.

    jquery
  • Show google map with dynamic address – jQuery trick 8

    Hello to all, welcome to therichpost.com. In this post, I will tell you, Show google map with dynamic address. I am showing the google map with textarea box value with jquery onblur event. You just need to add address in text-area like: canada. Here is the working demo for Show google map with dynamic address:   If…

    jquery
  • Open bootstrap modal on click on custom jquery datatable button – jQuery trick 7

    Hello to all, welcome to therichpost.com. In this post, I will tell you, Open bootstrap modal on click on custom jquery datatable button. DataTables is a plug-in for the jQuery Javascript library and Bootstrap is also very famous front-end framework. Here is the working code for Open bootstrap modal on click on custom jquery datatable button:  …

    jquery
  • Reset form inside bootstrap modal popup when it closed – jQuery trick 6

    Hello to all, welcome to therichpost.com. In this post, I will tell you, Reset form inside bootstrap modal popup when it closed. Here is the working demo code for therichpost Reset form inside bootstrap modal popup when it closed: $(‘#myModal’).on(‘hidden.bs.modal’, function () { $(‘#myModal form’)[0].reset(); }); If you have any coding query related to jquery then feel free…

    jquery
  • Jquery mobile number validation – jQuery trick 5

    Hello to all, welcome to therichpost.com. In this post, I will tell you, Jquery mobile number validation. jQuery is simple, write less do more.  In text input, we will add 10 to 13 digits with plus(+) sign. (+777777777777). Here is the working demo code for Jquery mobile number validation:  If you have any query related to jquery…

    jquery
  • How to pass laravel route to controller with multiple parameters?

    Hello to all, welcome to therichpost.com. In this post, I will tell you, How to pass laravel route to controller with multiple parameters?  Laravel is the best php mvc framework. In this post, we will send multiple parameters to controller from laravel route. Here is complete working and tested code: web.php file code: Route::get(‘/payment-summary/filter/{startDate}/{endDate}/{location}/{staff}/{voucher}’,’Reports\Finances\PaymentSummaryController@getFilterResponse’);  PaymentSummaryController.php file code:…

    Laravel 7.2 routing with route group auth guard check with prefix