Trying To Filter Header

Trying To Filter Header

perfectchoiceperfectchoice Posts: 3Questions: 0Answers: 0
edited June 2012 in General
I am trying to get header filtering with drop downs and I have that. It would appear though that the sorting function is conflicting with the filtering.

I was would like to only filter one column, specifically the day of the week. I am using wp-tables reloaded for the table HTML an initializing data tables within a page template. The site is www.hhavl.com and the table is on the Daily Specials page.

Here is the code Im using

[code]
<?php
/*
Template Name: Charlie Test Page
*/
?>

.dataTables_filter {
display: none;
}

<?php get_header(); ?>



<?php the_title(); ?>

<?php while ( have_posts() ) : the_post(); ?>

>

<?php the_content(); ?>
<!-- .entry-content -->
<!-- #post-<?php the_ID(); ?> -->

<?php endwhile; // end of the loop. ?>




(function($) {
/*
* Function: fnGetColumnData
* Purpose: Return an array of table values from a particular column.
* Returns: array string: 1d data array
* Inputs: object:oSettings - dataTable settings object. This is always the last argument past to the function
* int:iColumn - the id of the column to extract the data from
* bool:bUnique - optional - if set to false duplicated values are not filtered out
* bool:bFiltered - optional - if set to false all the table data is used (not only the filtered)
* bool:bIgnoreEmpty - optional - if set to false empty values are not filtered from the result array
* Author: Benedikt Forchhammer
*/
$.fn.dataTableExt.oApi.fnGetColumnData = function ( oSettings, iColumn, bUnique, bFiltered, bIgnoreEmpty ) {
// check that we have a column id
if ( typeof iColumn == "undefined" ) return new Array();

// by default we only wany unique data
if ( typeof bUnique == "undefined" ) bUnique = true;

// by default we do want to only look at filtered data
if ( typeof bFiltered == "undefined" ) bFiltered = true;

// by default we do not wany to include empty values
if ( typeof bIgnoreEmpty == "undefined" ) bIgnoreEmpty = true;

// list of rows which we're going to loop through
var aiRows;

// use only filtered rows
if (bFiltered == true) aiRows = oSettings.aiDisplay;
// use all rows
else aiRows = oSettings.aiDisplayMaster; // all row numbers

// set up data array
var asResultData = new Array();

for (var i=0,c=aiRows.length; i -1) continue;

// else push the value onto the result data array
else asResultData.push(sValue);
}

return asResultData;
}}(jQuery));


function fnCreateSelect( aData )
{
var r='', i, iLen=aData.length;
for ( i=0 ; i
[/code]

Replies

  • perfectchoiceperfectchoice Posts: 3Questions: 0Answers: 0
    Ive managed to get everything else I need at this point but being able to get sort only in the day column and to populate the selector with the first day shown. I would like to eliminate the "all" selection.
This discussion has been closed.