diff --git a/frappe/public/js/frappe/form/grid_row.js b/frappe/public/js/frappe/form/grid_row.js index 453b8b5f24..7eea578f8c 100644 --- a/frappe/public/js/frappe/form/grid_row.js +++ b/frappe/public/js/frappe/form/grid_row.js @@ -316,6 +316,12 @@ export default class GridRow { $col.field_area = $('
').appendTo($col).toggle(false); $col.static_area = $('
').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;