我正在使用www.phpgrid.com
的数据网格作为我的网站。我想将工具提示自定义为自定义。我应该修改哪个文件,我该怎么做?
我在他们的文档中看到了一个参考:
http://phpgrid.uservoice.com/knowledgebase/articles/33488-tool-tip-for-column-headers
但这对我没用。
答案 0 :(得分:2)
你想做什么?代码非常明显。替换"第1列标题标题"对于第一列标题,替换"第2列标题标题"对于第二个,等等。
jQuery(document).ready(function($){
jQuery("tr.ui-jqgrid-labels th:eq(0)").attr("title", "Column 1 header title");
jQuery("tr.ui-jqgrid-labels th:eq(1)").attr("title", "Column 2 header title");
jQuery("tr.ui-jqgrid-labels th:eq(2)").attr("title", "Column 3 header title");
});