Search
11329 results 2171-2180
Forum
- 14th Nov 2011Filter only match whole caseuse "DataTables individual column filtering example (using select menus)"
- 26th Oct 2011DataTables Column Filter External FormI'm looking at using the External Form functionality found at http://jquery-datatables-column-filter.googlecode.com/svn/trunk/external.html, but I see that the page is using version 1.3.2 of the plug-in, but the download zip gives me 0.9.0. Is 1.3.2 considered latest and reasonably stable? I'd want the functionality but wanna make sure I get the version I should be using.
- 5th Aug 2011custom filter with colreorder and colvisusing the code from filtering example: [code]$.fn.dataTableExt.afnFiltering.push( function( oSettings,
- 29th Jun 2011click function in drawcalback not functioning after sort or filter...i need help regarding this... my code is [code] "fnDrawCallback": function ( oSettings ) { $('#example5 tbody tr').each( function () { var iPos = oTable.fnGetPosition( this ); $(this).click( function () { //var nTds = $('td', this); //var idangota = $(nTds[3]).text(); var idangota=oSettings.aoData[iPos]._aData[0]; var cmdprocess='daftarangota'; var idksus=''; var dataString = 'idangota='+ idangota + '&cmdprocess='+cmdprocess+ '&idksus='+idksus; //alert(dataString); $.ajax({ type: "POST", url: "ekursus/dataprocess.php", data: dataString, success: function(){ $('#subcontentk').load('ekursus/eks_dftrangota.php?kur_idksus='+idksus); //$('#subcontentk').load('ekursus/eks_dftrangota.php?kur_idksus='+oSettings.aoData[iPos]._aData[0]); //window.location = "whatever.php?id="+oSettings.aoData[iPos]._aData[0]; }});//tutup ajax } );//tutup click function } );//tutup .each }//tutup fn draw call back [/code] after i use search box then click any row this came out...how to fix this?? it said oSettings.aoData[iPos] is undefined
- 2nd Jun 2011fnCreateSelect select filter and colvis togetherColVis and select dropdown filters with datables 1.7. I
- 13th May 2011Datatables and date type - server side - does not filter date columnHello I'm using Datatables with PostgreSQL for my database and the example processing file http://www.datatables.net/development/server-side/php_postgres. My problem is that I have a field which is of date type in my PostgreSQL table and the example file says I need to modify it for all other types of data except string. I probably need to cast the date to string type as I understand. Can you show me how to implement that ? Is there any script / modification / plugin that already solves this ? Thanks for a great script!
- 5th Apr 2011filter helpa little trouble with filtering This is the problem
- 1st Mar 2011Global filter and Server-side tableHey, I want to global filter/search from index.php and get the value to datatable search input in search.php. Hope you get what i want. And is it possible to make column rows linkable? I'm outputting names and want to add a html/php code to the names. Regards, SeDo
- 7th Feb 2011Filter on not posting all dataHi guys, I have a table with datatables and I fill it with checkboxes. But when I search for something and then POST the data, not all checkboxes get POSTED... I want all checkboxes to POST...
- 5th Jan 2011using select menus to filter html-filled tablesHello, a small fix to use HTML in Tables if you using this example code: "DataTables individual column filtering example (using select menus) " function fnCreateSelect( aData ) { var r='', i, iLen=aData.length; for ( i=0 ; i/g,""); r += ''+str+''; } return r+''; }