Quantcast
Channel: Recent Discussions — DataTables forums
Viewing all articles
Browse latest Browse all 82117

Customized help needed to convert datatable into editor datatable

$
0
0
I have the below code which displays the selected data properly, I need help converting this to use the editor control. Please modify my code so that the 'teamname' is able to be changed using a select box from the dataTables editor form. I will use the modified code to understand how to display and update the database table using dataTables editor. I am using this example to understand how this works and to justify purchasing datatables editor control.

<?php
$con = mysql_connect("1.2.2.3", "username", "password");
if (!$con) {
    die("Error: " . mysql_error());
}
mysql_select_db("nctsdb", $con);
$result = mysql_query("
SELECT ncts_teams.teamname, ncts_agents.*
  FROM    nctsdb.ncts_agents ncts_agents
       JOIN
          nctsdb.ncts_teams ncts_teams
       ON (ncts_agents.team_id = ncts_teams.team_id)
 WHERE (ncts_agents.password <> '99')
");
?>
<!DOCTYPE html>
<html>
    <head>
        <title>TeamEditor</title>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <script src="/jquery/jquery.js" type="text/javascript"></script>
        <script src="/jquery/datatables/media/js/jquery.dataTables.js" type="text/javascript"></script>
        <style type="text/css">
            @import "/jquery/datatables/media/css/jquery.dataTables_themeroller.css";
            @import "http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css";
        </style>
        <style>
            *{
                font-family: arial;
            }
        </style>
        <script type="text/javascript" charset="utf-8">
            var oTable;
            $(document).ready(function(){
                $("#teamsclick").click( function( e ) {
                      if ( $(this).hasClass('row_selected') ) {
                        $(this).removeClass('row_selected');
                      }
                      else {
                        oTable.$('tr.row_selected').removeClass('row_selected');
                        $(this).addClass('row_selected');
                      }
                });
                oTable = $('#teams').dataTable({
                    "sPaginationType":"full_numbers",
                    "aaSorting":[[2, "desc"]],
                    "bJQueryUI":true,
                    "iDisplayLength":40,
                });
            })
        </script>
    </head>
    <body>
        <div>
            <table id="teams" class="display">
                <thead>
                    <tr>
                        <th>Username</th>
                        <th>FirstName</th>
                        <th>LastName</th>
                        <th>Team</th>
                    </tr>
                </thead>
                <tbody>
                    <?php
                    while ($row = mysql_fetch_array($result)) {
                                  ?>
                        <tr>
                            <td><?=$row['username']?></td>
                            <td><?=$row['name_first']?></td>
                            <td><?=$row['name_last']?></td>
                            <td><?=$row['teamname']?></td>
                        </tr>
                        <?php
                    }
                    ?>
                </tbody>
            </table>
        </div>
    </body>
</html>

Viewing all articles
Browse latest Browse all 82117

Trending Articles