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="QWRkIHN1Ymdyb3Vw" 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 高级搜索对话框中本地化按钮工具提示
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01
- 400或500级别的HTTP响应 2022-01-01
- 失败的 Canvas 360 jquery 插件 2022-01-01
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- Flexslider 箭头未正确显示 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07