How to display Required field with Red Asterick sign

0
I have some required fields for user perspective  i want to show red asterick sign
asked
2 answers
1

Hi Anjali,

In your cusom.scss file put this class

.title-mandatory:after {    content: '*';    display: inline-block;    font-size: 12px;    color: #FF7687;    line-height: 20px;    vertical-align: top;    padding: 0 5px;}

use a lable for yout input field and put this  class title-mandatory to the label

answered
1

Hi Anjali

 

Take a look at this; it has an brief explanation:

https://community.mendix.com/link/space/ui-&-front-end/questions/109076

answered