Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebApplication/MVC2/HeuristicLabWeb.PluginHost/HLWebPluginHost/Content/jQuery/jQueryPlugins/DataTables-1.7.6/media/unit_testing/tests_onhold/3_ajax/aoColumns.sName.js @ 6286

Last change on this file since 6286 was 6286, checked in by dkahn, 13 years ago

#1198 Added jQuery plus plugins

File size: 638 bytes
RevLine 
[6286]1// DATA_TEMPLATE: empty_table
2oTest.fnStart( "aoColumns.sName" );
3
4/* This has no effect at all in DOM methods - so we just check that it has applied the name */
5
6$(document).ready( function () {
7  /* Check the default */
8  var oTable = $('#example').dataTable( {
9    "sAjaxSource": "../../../examples/examples_support/json_source.txt",
10    "aoColumns": [
11      null,
12      null,
13      null,
14      { "sName": 'unit test' },
15      null
16    ]
17  } );
18  var oSettings = oTable.fnSettings();
19 
20  oTest.fnWaitTest(
21    "Names are stored in the columns object",
22    null,
23    function () { return oSettings.aoColumns[3].sName =="unit test"; }
24  );
25 
26 
27  oTest.fnComplete();
28} );
Note: See TracBrowser for help on using the repository browser.