how to localize button tooltips in jqgrid advanced search dialog(如何在 jqgrid 高级搜索对话框中本地化按钮工具提示)
问题描述
似乎工具提示 Add subgroup
、Add rule
、Delete rule
在 jqgrid 代码中是硬编码的.
inputAddSubgroup = $("
如何本地化它们?
我已将我的详细信息发布到 trirand
我使用了以下代码
$.extend($.jgrid.search, {多重搜索:真,多组:真,重新创建过滤器:真,closeOnEscape:真,closeAfterSearch:真,覆盖:0,重绘后:函数(){$('input.add-rule',this).button().val('添加新规则').attr('title', '我的添加新规则工具提示');$('input.add-group',this).button().val('添加新组或规则').attr('title', '我的新组或规则工具提示');$('input.delete-rule',this).button().val('删除规则').attr('title', '我的删除规则工具提示');$('input.delete-group',this).button().val('删除组').attr('title', '我的删除组工具提示');$(this).find("table.group:not(:first)").css({边框宽度:1px",边框样式:虚线"});}});
我在组中添加了额外的边框,因为我觉得那里很有帮助.
It seems like tooltips Add subgroup
, Add rule
, Delete rule
are hard coded in jqgrid code.
inputAddSubgroup = $("<input type='button' value='+ {}' title='Add subgroup' class='add-group'/>");
How to localize them?
I posted to trirand my detailed suggestion and reminded Tony twice about the problem later.
Additionally I described in the answer a workaround which allows to customize the Advanced searching dialog
Simple modification of the original demo make the following new demo
I used the following code
$.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"
});
}
});
I added additional border in groups because I find there helpful.
这篇关于如何在 jqgrid 高级搜索对话框中本地化按钮工具提示的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 jqgrid 高级搜索对话框中本地化按钮工具提示
基础教程推荐
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 直接将值设置为滑块 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01