Datatable problem with Dreamweaver
Datatable problem with Dreamweaver
Hi guys,
I am writing to salute from Venezuela, my question is this:
The library's installed correctly and works well until a way, the problem is I have a repeating table made with dreamweaver, which automatically performs the matter is that the plugin loads fine, but does not perform the filters to write to the input, any idea how one might set up there, I have the latest version of the plugin discharged yesterday.
Thanks for the help you can give me.
This question has an accepted answers - jump to answer
Answers
We would need a link to a test case showing the issue, as per the forum rules please.
Allan
ok I prepare
This is the link to the test:
http://usa-ven.com.ve/admin/conexiones_test.php
the sample data is there, but if they write "sorely", you will see that it shows nothing as only looking at the first row and not in the list of repetition that makes dreamweaver
not as affix the code and it looks good
.
Code that searches and lists the records:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Actualizar Usuario</title>
<link href="Css/actualizar_usuario.css" rel="stylesheet" type="text/css">
$(document).ready(function() {
$('#example').DataTable({
"bFilter": true,});
} );
</head>
<body class="dt-example">
<header class="titulo" id="titulo"> <strong id="titulo_text">Listado de Conexiones x Usuario</strong></header>
<div class="container">
<section>
</section>
</div>
</body>
<?php > ``` ?></html>
<?php
mysql_free_result($lista);
I'm not sure whether dataTables supports multiple <tbody> tags.
Try opening and closing your tbody outside the loop.
```
<tbody>
<?php do { ?>
</tbody>
Excellent !!!!!!, your guidance led me to the solution, just place the <tbody> out of the loop and ready, everything went fine, thank you very much !!!!!!
It does not. That is something I want to add for v2 - but that is likely a good long while away yet... v1.x still has plenty of life in it :-)
Allan
No problem, just by moving the <tbody> and showed them the problem is solved, thanks again