Let’s Code Better
-
Get Backup of Stored Procedures in Namecheap MySQL Database
Read more: Get Backup of Stored Procedures in Namecheap MySQL DatabaseNamecheap MySQL doesn’t allow to see or edit stored procedures if they are written using some tool like Workbench. So In case you want to take backup or edit SP’s, you will only have one choice bang your head with customer care and give them technical knowledge about ‘What is stored procedure’ after spending 1…
-
Make Quick HTTP Calls from Android Using Volley
Read more: Make Quick HTTP Calls from Android Using VolleyIn general practice an Android developer use “HttpURLConnection” to use web services and do ant data communication over the internet. Its bit confusing as it gives an error to handle threads and Async tasks. So it makes the process too long cumbersome. For quickly using data communication I prefer Volley library of android. Let’s learn…
-
jQuery Tricks and Tips Reference
Read more: jQuery Tricks and Tips ReferenceIn this post, we will discuss some quick tips and tricks which can help in writing a robust code using jQuery. These jQuery tips are related to some basic methods using which we can resolve most encountered scenarios and problems.
-
How to Create Production Release in Ionic 2/3
Read more: How to Create Production Release in Ionic 2/3After finishing my app development and testing phase, I tried to find some good documentation for generating production release of my build APK. When I searched on Google, the first link which landed me on Ionic docs explaining to create production release in Ionic 1. As ionic 2/3 is based on Angular 4 latest component-based technology having a powerful feature called AOT (Ahead of Time). AOT in…
-
Resolved! Found com.google.android.gms:play-services-location:+, but version 9.0.0 is needed issue in Ionic 2/3
Read more: Resolved! Found com.google.android.gms:play-services-location:+, but version 9.0.0 is needed issue in Ionic 2/3Hey! when I was building ionic 3 application using native plugins, I faced a strange issue during building my application to generate APK file out of it. Then I noticed that this issue was caused after adding Ionic’s Native “Background Geolocation” . So when I removed this plugin, APK generated successfully. I was in deadly need…
-
Use TabIndex Form Field Focus in Specific Container
Read more: Use TabIndex Form Field Focus in Specific ContainerUsing tab index attribute in HTML form fields a user can easily navigate to the next or previous field by merely using the keyboard. But after some presses, Tab index focus caret secretly goes to a new dimension where it becomes impossible to press tab to get back that caret guy in place. ultimately we…
-
Datatable Row Reorder with Checkboxes and Radio Buttons
Read more: Datatable Row Reorder with Checkboxes and Radio ButtonsDatatable row recorders feature is used in tables using it’s add-on plugin named (dataTables.rowReorder.js). Using this addon we can drag and drop rows in any order we want in the table. This works only if the table is having some unique serial number or ID. Let’s work on the implementation of datatable with row reorder…
-
Custom Read More and Read Less using jQuery/ Javascript Function.
Read more: Custom Read More and Read Less using jQuery/ Javascript Function.You can always find jQuery plugins or libraries for any type of requirement. But if we try to add plugins for every specific requirement, then we end up with a bunch heavy loaded library set which can take much time to load and can badly affect page efficiency. So I personally prefer to always try…
-
Top 5 Chart Plugins in JavaScript and AngularJS
Read more: Top 5 Chart Plugins in JavaScript and AngularJSGraphical representation of data leaves a long lasting picture with better understanding. Sometimes we may need to use graphs and charts to better implement data in web applications. During my research for some project, I came across with such beautiful chart plugins. Here are some top chart libraries.
-
5 Ways to Optimise Ionic Apps Like Native
Read more: 5 Ways to Optimise Ionic Apps Like NativeNowadays most of the mobile app developers moving towards hybrid apps which can be deployed on any platform without knowing any advanced languages. The best framework used to build hybrid apps is Ionic, which is gaining a lot of attention these days. But if we compare a native and a hybrid, if may give you…
-
Check/ Detect If Ionic View/ Page Reached Bottom Load Infinite Data
Read more: Check/ Detect If Ionic View/ Page Reached Bottom Load Infinite DataLike native Android apps, we sometimes need a view, where list items can be loaded after user reached the bottom of all loaded list items. This behavior is recommended if we have a long list to load and we don’t want the user to tap next every time to view next set of list items.
-
How to Integrate Angular Material in Ionic Apps
Read more: How to Integrate Angular Material in Ionic AppsA few months back I was working on a project using Angular Material, believe me, guys angular Material is really an amazing framework which does not only create responsive apps with bootstrap structural design but it also adds a pinch of elegance to an application making it more beautiful to look at. It is gaining…
-
How to Make Element Draggable in AngularJS Without Using any Module.
Read more: How to Make Element Draggable in AngularJS Without Using any Module.Making in-page elements or containers give more flexibility to the user so that he can move or drag stuff as per requirement. In jQuery UI we are pretty much aware of a Draggable function which makes thing a lot easier. jQuery is still loved due to its plug play and enjoyable way of work. Today…
-
How to Create Multipage PDF from HTML Using jsPDF and html2Canvas
Read more: How to Create Multipage PDF from HTML Using jsPDF and html2CanvasThere are a number of tools which can easily create PDF files from JSON or raw data provided. But in some situations, we have rich UI elements like images and data representation in graphs, so in that case, we may require PDF as it is. jsPDF and html2canvas are really powerful tools which can help…
-
jQuery | How to Set Dropdown Values for Single and Multiple Selection
Read more: jQuery | How to Set Dropdown Values for Single and Multiple SelectionThe dropdown select box can have single and multiple selections. The muli selection is enabled by adding multiple attribute property. To set the value of the select box in the jQuery use val() method. To set a single value in dropdown pass value as string in val() method and an array of values in case…
-
jQuery | How to get values of multiple selected checkboxes
Read more: jQuery | How to get values of multiple selected checkboxesTo get an array of selected checkboxes values we need to use jQuery each() method and :checked selector on a group of checkboxes. The each() method will loop over the checkboxes group in which we can filter out selected checkboxes using <strong>:checked</strong> selector.
-
jQuery | Multiple Checkbox Check/ Uncheck on Table Tutorial
Read more: jQuery | Multiple Checkbox Check/ Uncheck on Table TutorialIn general application with tabular data, may have selected using a checkbox on each row. In that case, there should be a master checkbox to check/uncheck all table rows. Here we will discuss an example table that will have a master checkbox on the header and each table row with its own checkbox. A user…
-
jQuery | How to Dynamically Check/ Uncheck Checkbox
Read more: jQuery | How to Dynamically Check/ Uncheck CheckboxThe prop() method of jQuery is used to check or uncheck a checkbox. We can have a button or method to trigger a dynamic change in the checkbox selected state.