gpt4 book ai didi

javascript - 如何在 jqgrid 高级搜索对话框中本地化按钮工具提示

转载 作者:行者123 更新时间:2023-11-30 18:29:23 25 4
gpt4 key购买 nike

似乎工具提示 Add subgroupAdd ruleDelete rule 都硬编码在 jqgrid 代码中。

            inputAddSubgroup = $("<input type='button' value='+ {}' title='Add subgroup' class='add-group'/>");

如何本地化它们?

最佳答案

我将我的详细信息发布到 trirand suggestion并在之后两次提醒托尼这个问题。

此外,我在 the answer 中进行了描述允许自定义高级搜索对话框的解决方法

enter image description here

对原demo进行简单修改,如下new demo

enter image description here

我使用了下面的代码

$.extend($.jgrid.search, {
multipleSearch: true,
multipleGroup: true,
recreateFilter: true,
closeOnEscape: true,
closeAfterSearch: true,
overlay: 0,
afterRedraw: function () {
$('input.add-rule',this).button().val('Add new rule')
.attr('title', 'My Add new rule tooltip');
$('input.add-group',this).button().val('Add new group or rules')
.attr('title', 'My new group or rules tooltip');
$('input.delete-rule',this).button().val('Delete rule')
.attr('title', 'My Delete rule tooltip');
$('input.delete-group',this).button().val('Delete group')
.attr('title', 'My Delete group tooltip');
$(this).find("table.group:not(:first)").css({
borderWidth: "1px",
borderStyle: "dashed"
});
}
});

我在组中添加了额外的边框,因为我觉得这很有用。

关于javascript - 如何在 jqgrid 高级搜索对话框中本地化按钮工具提示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10061436/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com