1

我正在玩 openJS 网格。浏览了所有视频,但仍然卡住了。我正在使用最新的 OpenJS Grid 2.1.5。这里有几个问题:

  1. 当我使用基本设置示例时,将保存和删除设置为 true,我看不到任何一个出现在网格中。我错过了什么?

  2. 如何更改主题?该示例只有白色背景主题。我想将其更改为类似于视频教程深色主题的内容。我怎么做?

  3. 如何选择行,突出显示列?我单击该列,它只是进行排序。单击单元格,它不会选择行,也不会将其放在顶部,如视频所示。

谢谢,

魏,

html文件

<!DOCTYPE html>
<html lang="en">
<head>
    <link rel="stylesheet" href="../bootstrap/css/bootstrap.css"/>
    <link rel="stylesheet" href="../grid.css" title="openJsGrid"/>
    <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css"/>
    <script src="../jquery.js" type="text/javascript"></script>
    <script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript">    </script>
    <script src="../root.js"></script>
    <script src="../grid.js"></script>

    <script type="text/javascript">
        $(function() {
            $(".purchases").grid();
        });
    </script>
</head>
<body>
    <h2>Insider Purphases</h2>
    <table class="grid purchases" action="insider.php">
      <tr>
        <th col="Insider">Insider Name</th>
        <th col="Company">Company</th>
        <th col="Symbol">Symbol</th>
        <th col="Amount">Amount</th>
        <th col="Relationship">Relationship</th>
        <th col="Date">Date</th>
      </tr>
    </table>
</body>
</html>

php文件

<?php
// connect to db
mysql_connect("localhost","root","");
mysql_select_db("insidertrades");

// require our class
require_once("../grid.php");

// load our grid with a table
$grid = new Grid("purchases", array(
    "save"=>true,
    "delete"=>true
));
?>
4

2 回答 2

1

哇,对不起,我直到 10 个月后才看到这个。我没有监控 OpenJS Grid 问题的堆栈。

1)您需要在 JS 和 PHP 上打开保存和删除等功能(这是为了安全,我保证这是必要的邪恶)

2)CSS我的朋友。只需一点 CSS 就可以了。grid.css 文件有完整的注释。这次我没有制作易于切换的主题。没有人使用这些。

3) 要突出显示一列,请添加

$grid.on("cellClick", function(e,$cell) {
    $cell.closest(".col").find(".cell[data-row]").css("background","blue")
});

只是给你一个想法。如果您还没有,请更新到 2.1.7。

谢谢!

于 2014-03-27T05:03:02.350 回答
1

好的,至少打开 javascript 中的编辑标志带回有意义的“保存”按钮。

        <script type="text/javascript">
        $(function() {
            $(".purchases").grid({
              editing:true
           });
        });
    </script>
于 2013-05-20T02:36:11.667 回答