Question

Column names formatting

Hello Guys!

By default, the detail column names are being trimmed if they are too long:

Could you please advise if it is possible to make the extra characters go in the next line like

Actual                                                                                                                                                                                                                                                                     date

instead of Actual d... ?

Like

1 comments

Dear Vitalii,

Column captions can be formatted by the means of CSS. You can add a new module to the system and apply "white-space: pre-wrap;" styles on the LESS tab of the module. Please inspect the needed item to obtain its id or class, afterwards, apply styles to this id/class with CSS.

In order to add a newly created module, please add "css!_____" to the dependencies of your schema, indicating name of the module instead of _____:

define("ContactSectionV2", ["css!UsrTestCss"],
		function() {
			return {
				entitySchemaName: "Contact",
				methods: {},
				diff: /**SCHEMA_DIFF*/[]/**SCHEMA_DIFF*/
			};
		}
);

 

Show all comments