Sha256: 4f8b2bcd16377c0aac6c9c5d477c8cab542e812378b61b74061d84d03e2f18dc
Contents?: true
Size: 580 Bytes
Versions: 28
Compression:
Stored size: 580 Bytes
Contents
// DATA_TEMPLATE: js_data oTest.fnStart( "aoColumns.sName" ); /* This has no effect at all in DOM methods - so we just check that it has applied the name */ $(document).ready( function () { /* Check the default */ var oTable = $('#example').dataTable( { "aaData": gaaData, "aoColumns": [ null, null, null, { "sName": 'unit test' }, null ] } ); var oSettings = oTable.fnSettings(); oTest.fnTest( "Names are stored in the columns object", null, function () { return oSettings.aoColumns[3].sName =="unit test"; } ); oTest.fnComplete(); } );
Version data entries
28 entries across 28 versions & 1 rubygems