似乎 tooltips Add subgroup
, Add rule
,Delete rule
是在 jqgrid 代码中硬编码的。
inputAddSubgroup = $("<input type='button' value='+ {}' title='Add subgroup' class='add-group'/>");
如何本地化它们?
似乎 tooltips Add subgroup
, Add rule
,Delete rule
是在 jqgrid 代码中硬编码的。
inputAddSubgroup = $("<input type='button' value='+ {}' title='Add subgroup' class='add-group'/>");
如何本地化它们?
我向 trirand 发布了我的详细建议,并在稍后两次提醒 Tony 这个问题。
此外,我在答案中描述了一种允许自定义高级搜索对话框的解决方法
对原demo进行简单修改,制作如下新demo
我使用了以下代码
$.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"
});
}
});
我在组中添加了额外的边框,因为我觉得那里很有帮助。
您可以再次使用 jquery,例如:$('select the button').attr('title', 'New localized title')