XCRUD按钮不起作用

时间:2016-07-03 13:47:43

标签: jquery twitter-bootstrap crud

我正在为我的项目使用xcrud。代码如下。

require('../xcrud/xcrud.php'); 
$xcrud = Xcrud::get_instance();
$xcrud->table('groups');
echo $xcrud->render();

以美丽的方式呈现。但'添加','编辑'和其他按钮不起作用。配置文件没问题。

我正在使用LTE ADMIN引导程序模板。可能是jquery冲突的原因。请帮帮我。

2 个答案:

答案 0 :(得分:0)

检查你的数据库。

对于这些按钮,您必须具有PRIMARY KEY或唯一且如果其AUTO_INCREMENT更好。

答案 1 :(得分:0)

如果您已经将jquery文件添加到页面,则应该从xcrud_config.php中禁用xcrud的jquery。

第41行:

public static $load_jquery = false; // loads jQuery, turn it off if you already have jQuery on your page. jQuery version must be at least 1.7. If your jQuery loads in the bottom of page, you must activate $manual_load and use  Xcrud::load_css() & Xcrud::load_js() on your page.
public static $load_jquery_ui = true; // jQueryUI, turn it on if you already have jQueryUI on your page (datepicker and slider widgets are mandatory).