ソースを参照

Merge pull request #13296 from resilient-tech/fix-col-heading

fix: set title attribute for grid header columns
version-14
mergify[bot] 4年前
committed by GitHub
コミット
b7312545f2
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 4AEE18F83AFDEB23
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;



読み込み中…
キャンセル
保存