Flexigrid 示例从 mysql 返回数据

发布于 2024-11-15 17:04:51 字数 267 浏览 3 评论 0原文

我确信这是可以做到的,我只需要看一些例子。我想使用flexigrid来显示存储在mysql中的大量数据。我精通 php,但对 jquery 和 json 比较陌生。

谁能指出我正确的方向或提供一个很好的例子?我需要了解如何将数据返回到 flexigrid json。

谢谢

关于这个主题的精彩教程

I'm sure it can be done, I just need to see some examples. I want to use flexigrid to show massive sets of data stored in mysql. I am proficient in php, but new to jquery and json.

Can anyone point me in the right direction or provide a good example? I need to see how to return data back to the flexigrid json.

Thank you

Great Tutorial on this topic

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

多情出卖 2024-11-22 17:04:51

这只是返回数据库结果的部分代码,您可以使用 Flexigrid jquery 代码调用页面

        while ($row = mysql_fetch_assoc($results)) {
         $data['rows'][] = array(
                                  'id' => $row['pf_id'],
                                  'cell' => array(
                                               $row['cat_code'], 
                                               $row['cat_title'], 
                                               $row['cat_link'] = "<a href=\"catagory_edit.php?cat_id=".$row['cat_id']."\">Edit</a> | <a href=\"catagory_to_family_association.php?cat_id=".$row['cat_id']."\">Associate Familys</a> | <a href=\"category_child_order.php?cat_id=".$row['cat_id']."\">Order Children</a>")); }
echo json_encode($data);

使用 Flexigrid jquery 代码调用页面

$("#flex1").flexigrid({
            url: 'category_main_json.php',
                        dataType: 'json',
                        colModel : [
                            {display: 'Code', name : 'cat_code', width : 70, sortable : true, align: 'left'},
                            {display: 'Name', name : 'cat_title', width : 550, sortable : true, align: 'left'},
                            {display: 'Action', name : 'cat_link', width : 205, sortable : true, align: 'left'},
                            ],
                        buttons : [
                            {name: 'Add New Category', bclass: 'add', onpress : test},
                            {separator: true}
                            ],
                        searchitems : [
                            {display: 'Code', name : 'cat_code'},
                            {display: 'Name', name : 'cat_title', isdefault: true}
                            ],
                        sortname: "cat_code",
                        sortorder: "asc",
                        usepager: true,
                        useRp: true,
                        rp: 50,
                        showTableToggleBtn: false,
                        resizable: false,
                        width: 880,
                        height: 450,
                        singleSelect: true,
                        showTableToggleBtn: false

                    }
                );

This is just the partial code for returning your database results, you would call you page with the flexigrid jquery code

        while ($row = mysql_fetch_assoc($results)) {
         $data['rows'][] = array(
                                  'id' => $row['pf_id'],
                                  'cell' => array(
                                               $row['cat_code'], 
                                               $row['cat_title'], 
                                               $row['cat_link'] = "<a href=\"catagory_edit.php?cat_id=".$row['cat_id']."\">Edit</a> | <a href=\"catagory_to_family_association.php?cat_id=".$row['cat_id']."\">Associate Familys</a> | <a href=\"category_child_order.php?cat_id=".$row['cat_id']."\">Order Children</a>")); }
echo json_encode($data);

call the page with the flexigrid jquery code

$("#flex1").flexigrid({
            url: 'category_main_json.php',
                        dataType: 'json',
                        colModel : [
                            {display: 'Code', name : 'cat_code', width : 70, sortable : true, align: 'left'},
                            {display: 'Name', name : 'cat_title', width : 550, sortable : true, align: 'left'},
                            {display: 'Action', name : 'cat_link', width : 205, sortable : true, align: 'left'},
                            ],
                        buttons : [
                            {name: 'Add New Category', bclass: 'add', onpress : test},
                            {separator: true}
                            ],
                        searchitems : [
                            {display: 'Code', name : 'cat_code'},
                            {display: 'Name', name : 'cat_title', isdefault: true}
                            ],
                        sortname: "cat_code",
                        sortorder: "asc",
                        usepager: true,
                        useRp: true,
                        rp: 50,
                        showTableToggleBtn: false,
                        resizable: false,
                        width: 880,
                        height: 450,
                        singleSelect: true,
                        showTableToggleBtn: false

                    }
                );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文