Showing 12 Result(s)
Row Selection and 'Select All' in jQuery DataTables

Row Selection and ‘Select All’ in jQuery DataTables

When working with large datasets in web applications, efficient data management becomes essential. One of the most useful features in jQuery DataTables is row selection and the “Select All” option, which allows users to quickly select multiple rows across pages. In this blog, we’ll explore how to implement row selection and “Select All” functionality in …

keyboard shortcut

Keyboard shortcuts for Sublime and VSCode

Knowing and applying the keyboard shortcuts is very useful and time-saving while coding/programming. I have added some keyboard shortcuts that will help you while writing code in any editor. Most of the shortcuts are common across most editors. But you can modify them in most modern editors like sublime, VScode, atom, etc. If you are …

DataTables

DataTables – Turn your ordinary HTML table into an interactive table

DataTables is a plug-in that can turn your ordinary table into an awesome interactive table. You just have to call a function only. So let’s get started. If you are using Bootstrap then awesome, just include these files into the HTML document: CSS: <link rel=”stylesheet” href=”https://cdnjs.cloudflare.com/ajax/libs/datatables/1.10.19/css/dataTables.bootstrap4.min.css” /> JS: <script src=”https://cdnjs.cloudflare.com/ajax/libs/datatables/1.10.19/js/jquery.dataTables.min.js”></script> <script src=”https://cdnjs.cloudflare.com/ajax/libs/datatables/1.10.19/js/dataTables.bootstrap4.min.js”></script> And of course, …