Back to school sale! Save up to 50%
Grab Yours

Front-end callbacks

wpDataTable front-end callbacks: JavaScript hooks for customizing the table layout

The front-end (JS) part of wpDataTables plays a significant role in the plugin’s functionality. Generally, front-end rendering is done by the DataTables jQuery plugin, but wpDataTables introduces some callbacks of its own.

All wpDataTables existing on the page are reflected in the global JavaScript object called ‘wpDataTables‘. If you check this variable in the JS developer console you will see the wpDataTables as properties of this object:

Please note that using wpDataTable callbacks requires certain level of programming skills and included support refers only to advice.

addOnDrawCallback( function callback() );

To assign a simple function to the redraw event we can use e.g. this jQuery snippet:

<script type="text/javascript">
jQuery(window).on('load',function(){
  wpDataTables.table_1.addOnDrawCallback(
  function(){
    jQuery('#callback_msg_container').append('Callback triggered!');
   })
});
</script>

The snippet is live on this page – try to sort, filter, or switch pages in the table to see how it works!

If we check the developer console, we can see that this wpDataTable can be accessed by means of a global variable:

wpDataTables.table_1

Here’s a wpDataTable:

 

Wait, Before You Download!

To get your hands on wpDataTables Lite, please enter your email address below. We’ll send you a direct download link and keep you updated on existing features along with helpful tips and tricks!

By continuing, I accept Privacy Policy and T&C
Mail Box