瀏覽代碼

fix: set title attribute for grid header columns

version-14
Sagar Vora 4 年之前
父節點
當前提交
3756461926
共有 1 個檔案被更改,包括 6 行新增0 行删除
  1. +6
    -0
      frappe/public/js/frappe/form/grid_row.js

+ 6
- 0
frappe/public/js/frappe/form/grid_row.js 查看文件

@@ -316,6 +316,12 @@ export default class GridRow {

$col.field_area = $('<div class="field-area"></div>').appendTo($col).toggle(false);
$col.static_area = $('<div class="static-area ellipsis"></div>').appendTo($col).html(txt);

// set title attribute to see full label for columns in the heading row
if (!this.doc) {
$col.attr("title", txt);
}

$col.df = df;
$col.column_index = ci;



Loading…
取消
儲存