我正在玩 openJS 网格。浏览了所有视频,但仍然卡住了。我正在使用最新的 OpenJS Grid 2.1.5。这里有几个问题:
当我使用基本设置示例时,将保存和删除设置为 true,我看不到任何一个出现在网格中。我错过了什么?
如何更改主题?该示例只有白色背景主题。我想将其更改为类似于视频教程深色主题的内容。我怎么做?
如何选择行,突出显示列?我单击该列,它只是进行排序。单击单元格,它不会选择行,也不会将其放在顶部,如视频所示。
谢谢,
魏,
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
));
?>