Filter Column , head
Filter Column , head
Hello,
I tried to set up filter in the header of the table but it didnt works. Is there any possibilities to get the filter to the top of the column instead of bottom?
[code]
Num REA
Désignation Item
Sévérité
Date Création
Statut
><?php echo $aDonnes->getDesignationItem(); ?>
><?php echo $aDonnes->getPriorite(); ?>
><?php echo $date["jour"]."/".$date["mois"]."/".$date["annee"]?>
><?php echo $aDonnes->getStatut();?>
Num REA
Sujet
Sévérité
Date Création
Etat
[/code]
I tried to set up filter in the header of the table but it didnt works. Is there any possibilities to get the filter to the top of the column instead of bottom?
[code]
Num REA
Désignation Item
Sévérité
Date Création
Statut
><?php echo $aDonnes->getDesignationItem(); ?>
><?php echo $aDonnes->getPriorite(); ?>
><?php echo $date["jour"]."/".$date["mois"]."/".$date["annee"]?>
><?php echo $aDonnes->getStatut();?>
Num REA
Sujet
Sévérité
Date Création
Etat
[/code]
This discussion has been closed.
Replies
Allan
here is my Js code for the table :
[code]
$("#mytableau").dataTable().columnFilter({
aoColumns: [
{ type: "text",bRegex:true },
{ type: "text",bRegex:true },
{ type: "text",bRegex:true },
{ type: "text",bRegex:true },
{ type: "text",bRegex:true }
]
});
[/code]
Allan