Prettier JQuery tables
[contractdashboard.git] / media / unit_testing / tests_onhold / 3_ajax / sAjaxSource.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// DATA_TEMPLATE: empty_table
oTest.fnStart( "sAjaxSource" );
 
/* Sanitfy check really - all the other tests blast this */
 
$(document).ready( function () {
        /* Check the default */
        var oTable = $('#example').dataTable( {
                "sAjaxSource": "../../../examples/examples_support/json_source.txt"
        } );
        var oSettings = oTable.fnSettings();
        
        oTest.fnWaitTest( 
                "Server side is off by default",
                null,
                function () { 
                        return oSettings.sAjaxSource == "../../../examples/examples_support/json_source.txt";
                }
        );
        
        oTest.fnComplete();
} );