Search
10709 results 7191-7200
Forum
- 10th Oct 2010ajax and search screenI have suppressed "sAjaxSource" at the initialisation of the datatable and the following function is called by the click on the button. it works fine, thanks !! [code] function search(){ oTable = $("#tableSearch").dataTable(); oTable.fnClearTable(); $.getJSON("/ModificationController/ajax",callBack); function callBack(data) { $.each(data, function(i,row){ oTable.fnAddData( row); } ); }; }; [/code]
- 8th Oct 2010Loading new table in IEthen proceed with the initialisation...! So what you need
- 7th Oct 2010Detect multiple languageThis thread on Stackoverflow might be of interest: http://stackoverflow.com/questions/1043339/javascript-for-detecting-browser-language-preference . You can use the methods suggested there and modify your DataTables initialisation based on that. But it sounds unreliable... Allan
- 7th Oct 2010Uding DataTable w/o JavaScriptthe details rows before initialising DataTables, and have it
- 6th Oct 2010MultiLine Table Headers and ColVisColVis has created, after initialisation. Looking forward, ColVis should
- 6th Oct 2010set global search value to a parameter in the urlYou can use oSearch to set the initial search string: http://datatables.net/usage/options#oSearch , and then all you need to do is get the search string from the window.location.href string. Allan
- 5th Oct 2010How to change feature values after DataTable is already initialized?Hi, Allan, I think I found the answer myself. It is OK to only set the height and keep the initial sX. Thank you for your help. Ken
- 4th Oct 2010Error on PageYou are initialising DataTables twice here: [code]
- 3rd Oct 2010IE7 crazy slowthe table when your initialising it - that makes IE
- 2nd Oct 2010how can i put sDom to my Dom?DataTables has finished it's initialisation: http://api.jquery.com/category/manipulation/ Allan