Only one column has coloring
Only one column has coloring
I'm using the most basic setup possible. 3 columns. Sorting, filtering. I did add css row highlighting for hovering, but this problem happened before that. Only one column at a time gets any coloring and I'm not even sure how that one row is happening, much less why it's only 1.
// Table settings.
$attributes['datatable_options'] = array(
'bFilter' => TRUE,
'bInfo' => TRUE,
"bProcessing" => TRUE,
'iDisplayLength' => 25,
);
// Define table columns
$header = array(
array(
'data' => t('Email'),
'datatable_options' => array(
'bSortable' => TRUE,
'bSearchable' => TRUE,
),
),
array(
'data' => t('First Name'),
'datatable_options' => array(
'bSortable' => TRUE,
'bSearchable' => TRUE,
),
),
array(
'data' => t('Last Name'),
'datatable_options' => array(
'bSortable' => TRUE,
'bSearchable' => TRUE,
),
),
);
// Table settings.
$attributes['datatable_options'] = array(
'bFilter' => TRUE,
'bInfo' => TRUE,
"bProcessing" => TRUE,
'iDisplayLength' => 25,
);
// Define table columns
$header = array(
array(
'data' => t('Email'),
'datatable_options' => array(
'bSortable' => TRUE,
'bSearchable' => TRUE,
),
),
array(
'data' => t('First Name'),
'datatable_options' => array(
'bSortable' => TRUE,
'bSearchable' => TRUE,
),
),
array(
'data' => t('Last Name'),
'datatable_options' => array(
'bSortable' => TRUE,
'bSearchable' => TRUE,
),
),
);
This discussion has been closed.
Replies
Allan
http://realestateisgreat.net/node/617