Detail
#28565
CSS class ' tblRight' does not apply for fields in edit mode and in the header
The CSS class 'tblRight' is intended to display table content, especially numbers, right-aligned.
In the current implementation, the class has no effect on input elements that are not editable in the editing mode of their table or are displayed in the table header.\\ This is because the property text-align: right; has no effect on flex elements. In these cases, however, the cell content is displayed as flex, as these are control elements such as TextInput and similar and the content is now directly in the control and thus in flex instead of, for example, in an <input> below the control.
Test
Configure a table column with a non-editable input field as right-aligned and switch to table editing mode. The content of the input field should now be displayed right-aligned.
Alternatively, select the **Tables** main tab in the demo application, switch the table to edit mode in the **Grid** tab and select the row with the demo element X1, for example. The content of the **float** field was incorrectly left-aligned here, but should now be right-aligned.