Prettier JQuery tables
[contractdashboard.git] / media / unit_testing / tests_onhold / 4_server-side / aoColumns.bUseRendered.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// DATA_TEMPLATE: empty_table
oTest.fnStart( "aoColumns.bUseRendered" );
 
/* bUseRendered is used to alter sorting data, if false then the original data is used for
 * sorting rather than the rendered data
 */
 
$(document).ready( function () {
        /* Check the default */
        var mTmp = 0;
        
        var oTable = $('#example').dataTable( {
                "bServerSide": true,
                "sAjaxSource": "../../../examples/examples_support/server_processing.php",
                "aoColumns": [
                        null,
                        { "fnRender": function (a) {
                                if ( mTmp == 0 ) {
                                        mTmp++;
                                        return "aaa";
                                } else
                                        return a.aData[a.iDataColumn];
                        } },
                        null,
                        null,
                        null
                ]
        } );
        var oSettings = oTable.fnSettings();
        
        oTest.fnWaitTest( 
                "Default for bUseRendered is true - rendered data is used for sorting",
                function () { $('#example thead th:eq(1)').click(); },
                function () { return $('#example tbody tr:eq(0) td:eq(1)').html() == 'aaa'; }
        );
        
        /* Limited to what we can do here as the sorting is done on the server side. So stop here. */
        
        
        
        
        oTest.fnComplete();
} );