Question

visibility of mandatory fields

I would like to ask if it is in any kind possible to make the visibility of mandatory fields in the system better.

For users the little red star "*" next to the requested value is not straight forward and they would like to highlight them for example in a colour. Maybe something like that:

Like 1

Like

5 comments

You can add the following CSS: 

.t-label-is-required {
    color: red !important;
}

This will have the following result:

To see how to add the CSS to a page, see here. For adding it globally so it applies to all pages, see here.

Ryan

Dear Ryan is it also possible on Freedom pages? how?

Julio.Falcon_Nodos,

Yes, for Freedom UI pages, the CSS would look like this: 

label.crt-input-label.crt-input-required {
    color: red !important;
}

Ryan

Ryan Farley,

Thanks Ryan

Ryan Farley,

Could you tell me if this would work with business rules and DCM stages? E.g. the color would be standard when business rule is not active and applied when is? Thank you!

Show all comments