Changeset 6018 for main/waeup.sirp
- Timestamp:
- 3 May 2011, 05:50:54 (14 years ago)
- Location:
- main/waeup.sirp/trunk/src/waeup/sirp/browser
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/browser/resources.py
r6017 r6018 165 165 #: into the HTML page generated. 166 166 #: 167 #: * Assign a ``d atatable`` idto the HTML table you want to tune:167 #: * Assign a ``display dataTable`` class to the HTML table you want to tune: 168 168 #: 169 #: <table id="datatable">169 #: <table class="display dataTable"> 170 170 #: <thead> 171 171 #: <tr> -
main/waeup.sirp/trunk/src/waeup/sirp/browser/static/datatable.js
r6010 r6018 1 1 $(document).ready(function(){ 2 $(' #datatable').dataTable();2 $('.dataTable').dataTable(); 3 3 }); -
main/waeup.sirp/trunk/src/waeup/sirp/browser/templates/departmentmanagepage.pt
r6017 r6018 74 74 75 75 <div id="tab-2"> 76 <table id="datatable" class="display">76 <table class="display dataTable"> 77 77 <thead> 78 78 <tr> … … 110 110 111 111 <div id="tab-3"> 112 <table id="datatable" class="display">112 <table class="display dataTable"> 113 113 <thead> 114 114 <tr>
Note: See TracChangeset for help on using the changeset viewer.