Fiori Elements V4 GridTable: single-line input with character counter without increasing row height
07:56 11 Feb 2026

I’m working on a SAP Fiori Elements V4 (OData V4) app using a sap.ui.table.GridTable.

Users edit a “description” field in a GridTable column. For single-line inputs, users don’t see any character counter, so they often exceed the max length and only notice at save time.

In UI5, sap.m.TextArea can show the exceeded text / counter, but when FE renders the field as a TextArea, the GridTable row height grows and the layout becomes inconsistent.

What I want:
- keep the column visually single-line (same row height as other inputs)
- show a character counter
-allow scrolling for long text instead of growing height (rows=1, growing=false)

What I tried:

  1. overriding FieldGroup and/or LineItem fields with a custom fragment template that renders sap.m.TextArea.