Support Article
Required label is not displayed as explicit text
SA-44579
Summary
Labels for grid headers, marked Required (*), do not switch to the explicit ‘Required’ text when accessibility is enabled.

Error Messages
Not Applicable
Steps to Reproduce
- Set a grid column header label as required.
- Turn on accessibility
Root Cause
This behavior is as per Pega product design.
Resolution
The capability to mark a grid header label as Required will be withdrawn in a future release, as it is a configuration which is not intended to be supported.To continue using this configuration, include the below script in the UserWorkForm to make the displays consistent.
<pega:when name="isAccessible">
<style>
th strong.required-field-accessibility{
color: #CA751B;
font-size:100%;
overflow:visible;
text-indent: 0;
width: auto;
height: auto;
}
th .iconRequired{
background:none;
}
</style>
</pega:when>
Published October 10, 2017 - Updated October 8, 2020
Have a question? Get answers now.
Visit the Collaboration Center to ask questions, engage in discussions, share ideas, and help others.