Quantcast
Channel: DataTables 1.10 — DataTables forums
Viewing all articles
Browse latest Browse all 2364

Question about serverside draw parameter

$
0
0

I noticed that if the draw parameter is missing or set to 0 Datatables will draw the table. Its this code

        if ( draw ) {
            // Protect against out of sequence returns
            if ( draw*1 < settings.iDraw ) {
                return;
            }
            settings.iDraw = draw * 1;
        }

in _fnAjaxUpdateDraw that allows this. Just highlighting it in case that behavior is not intentional.

Kevin


Viewing all articles
Browse latest Browse all 2364

Trending Articles