jQuery DataTable - 需要在运行时根据行值更改标签

发布于 2024-12-28 08:11:34 字数 134 浏览 0 评论 0原文

在此处输入图像描述

在 jQuery DataTable 中开发的下表需要根据状态“0”时的条件添加状态标签然后“停用”,“1”- 激活。

enter image description here

Below table developed in the jQuery DataTable Need to add label for Status based on the condition if status "0" then "Inactivate" and for "1" - Active.

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

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

发布评论

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

评论(2

迷迭香的记忆 2025-01-04 08:11:34

您调查过fnRowCallback吗?
http://datatables.net/usage/callbacks#fnRowCallback

如果您查看数据表网站,
并使用 jsbin 示例,看起来确实如此
成为您正在寻找的...

Have you investigated fnRowCallback?
http://datatables.net/usage/callbacks#fnRowCallback

If you look at the example on the DataTables site,
and play with the jsbin example, it sure seems to
be what you're looking for...

你对谁都笑 2025-01-04 08:11:34
"render": function (data, type, row) {
                    if (data == "Y") {
                        data = "Approved"
                    }
                    else
                    {
                        data = "Pending"
                    }
                    return data
                },
"render": function (data, type, row) {
                    if (data == "Y") {
                        data = "Approved"
                    }
                    else
                    {
                        data = "Pending"
                    }
                    return data
                },
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文