PrimeNG p-checkbox - Add asterisk mandatory sign after label

1.8k Views Asked by At

Below is my p-checkbox code:

<div class="col-sm-8">
  <p-checkbox
    [(ngModel)]="allowParticipation"  
    binary="true" 
    label="I need to add red asterisk sign after this Label"     
  </p-checkbox>
</div>

How to add an asterisk sign after the label so that it should like below

(checkbox) I need to add red asterisk sign after this Label *

1

There are 1 best solutions below

1
On BEST ANSWER

You can do it with CSS:

:host::ng-deep .label-required:after {
  content: " *";
  color: red;
}

and set labelStyleClass="label-required" to apply this CSS to your checkbox label.

See demo