Jquery数据表隐藏删除按钮

发布于 2025-01-07 16:44:43 字数 247 浏览 0 评论 0原文

我正在使用

$('#AffiliatedContractorLookup').dataTable().makeEditable

我想让用户能够添加新记录,因此为此目的我使用了

但此工具栏同时显示添加和删除按钮。我想隐藏删除按钮。我怎样才能做到这一点?

I am using

$('#AffiliatedContractorLookup').dataTable().makeEditable

I want to give user the ability to add a new record , so for that purpose I used,

<div class="add_delete_toolbar" />

But this toolbar displays both Add and delete button. I want to hide the delete button. How can I acieve that ?

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

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

发布评论

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

评论(3

败给现实 2025-01-14 16:44:43

我知道这是一个老话题,但我也遇到了同样的问题。我尝试了一些解决方案,这是一个对我有用的解决方案:
在 databled-editable 文件中,您有这一行:

if (oDeleteRowButton == null && properties.sDeleteRowButtonId != "") {
                    oAddDeleteToolbar.append("<button id='" + properties.sDeleteRowButtonId + "' class='delete_row'>Delete</button>");
                    oDeleteRowButton = $("#" + properties.sDeleteRowButtonId);
                    oDeleteRowButton.click(_fnOnRowDelete);
                }

将其放在注释中,并且不会添加按钮

I know this is an old topic, but I had the same problem. I tried some solutions and here's one that worked for me:
in the file databled-editable you have this line:

if (oDeleteRowButton == null && properties.sDeleteRowButtonId != "") {
                    oAddDeleteToolbar.append("<button id='" + properties.sDeleteRowButtonId + "' class='delete_row'>Delete</button>");
                    oDeleteRowButton = $("#" + properties.sDeleteRowButtonId);
                    oDeleteRowButton.click(_fnOnRowDelete);
                }

place it in comment, and the button won't be added

厌倦 2025-01-14 16:44:43

更简单:

#btnDeleteRow
{
display:none;
} 

Even easier:

#btnDeleteRow
{
display:none;
} 
極樂鬼 2025-01-14 16:44:43

仅将“添加”按钮替换

<div class="add_delete_toolbar" /> 

<button id="btnAddNewRow">Add</button>

To have only the "Add" button simply replace

<div class="add_delete_toolbar" /> 

with

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