0

我使用 php 创建了一个表并添加了插件(使用 demo_table.css)。箭头不会显示在结果页面上,也不会应用任何 CSS。

这是我的php代码:

        $result = mysqli_query($link, $sql);

$num_rows = mysqli_num_rows($result);
        echo '<table cellpadding = "0" cellspacing="0" border="0" id="datatables"  class="display">';
        echo '<thead>';
        echo '<tr>';
        echo '<th>SNo.</th>
        <th>Username</th>
        <th>Trip ID</th>
        <th>Destination</th>
        <th >Leave Date</th>
        <th>Return Date</th>
        <th>Total</th>
        <th>Submit Date</th>
        <th >Status</th>
        <th >Reason</th>
        <th >Update</th>';
        echo '</tr>';
        echo '</thead>';
        echo '<tbody>';

}       else {
            echo('not valid user');
        }

if (!$result) {
    die(mysqli_error($link));

    }

if ($num_rows<=0){
    echo('not valid user');
    }

    elseif ($num_rows>0){
        $i=1;
        while($row = mysqli_fetch_assoc($result)) {

                $grandtotal = $row['flight_estimate'] + $row['registration_fee'] + $row['total_cost'];
                $status = $row['status'];
                if(($status == 'Approved') || ($status == 'Denied')){
                    $newcolumn = '<td></td>';
                }
                else{
                    $newcolumn = '<td><a href="Adminview.php?trip_id=' . $row['trip_id'] . '" id="editlink">Approve/Deny</a></td>';

                }

                echo '<tr>';
                echo '<td>'. $i++ .'</td><td>'.$row['username'].'</td><td>'.$row['trip_id'].'</td><td>'.$row['destination'].'</td><td>'.date('d/m/Y',strtotime($row['leave_date'])).'</td><td >'.date('d/m/Y',strtotime($row['return_date'])).'</td><td >'. round($grandtotal,2).'</td><td >'.date('d/m/Y',strtotime($row['updateddate'])).'</td><td >'.$row['status'].'</td><td >'.$row['reason'].'</td>'.$newcolumn;
            }
    echo '</tr>';
    echo '</tbody>';
    echo '</table>';

} ?>

有什么我想念的吗?它所做的只是将所有列值居中。但是当我点击标题时没有任何反应。

4

1 回答 1

0

您需要在初始化 dataTable 时将 'bJQueryUI' 设置为 true

$("#datatables").dataTable({ 'bJQueryUI' : true });

如果您发布您的 js 脚本会有所帮助,因为这就是您的问题所在。

于 2014-01-24T20:23:59.357 回答