Activities of "muhammedaltug"

Hello alexander,

Does this solution resolve your problem ?

Hello tunji,

Does this solution resolve your problem ?

Hello,

You can use skipValidation input with value true for this case. If you want disable abp-error messages for all formcontrol elements in form you can add this input to form tag. If you want disable for specific form control element add this input to your form control element.

<!-- disable all abp errors in form --> 
<form [formGroup]="yourFormGroup" [skipValidation]="true">
        ....
</form>

<!-- disable abp error for specific form control element -->
<form [formGroup]="yourFormGroup">
        <your-form-control
        formControlName="formControlName"
        [skipValidation]="true"
        ></your-form-control>
</form>

Hello, You can do it this way.

 <abp-modal [(visible)]="isModalOpen" [busy]="isModalBusy">
    <ng-template #abpHeader> header </ng-template>
    <ng-template #abpBody>
      <!-- wrap your modal content with a container which has your class-->
      <div class="overflow-scroll">
            <!-- modal body html goes here -->
      </div>
    </ng-template>
  </abp-modal>
Showing 251 to 254 of 254 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11