Browse Source

Added cache option for AJAX calls to Documentation

Please see the other proposed changes... This is the corresponding documentation change for this.
Joseph Reiter 11 years ago
parent
commit
2ff3856821
1 changed files with 10 additions and 1 deletions
  1. 10 1
      docs/docs.js

+ 10 - 1
docs/docs.js

@@ -169,6 +169,15 @@ $(function () {
                     example: 'basic-table'
                 },
                 {
+                    name: 'cache',
+                    attribute: 'data-cache',
+                    type: 'Boolean',
+                    description: 'False to disable caching of AJAX requests.',
+                    description_zh: '',
+                    'default': 'true',
+                    example: 'basic-table'
+                },
+                {
                     name: 'contentType',
                     attribute: 'data-content-type',
                     type: 'String',
@@ -705,4 +714,4 @@ $(function () {
 
     $(window).on('resize', initTables);
     initTables();
-});
+});