أنشطة "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>
عرض 251 الي 254 من 254 إدخالات
Made with ❤️ on ABP v8.2.0-preview Updated on مارس 25, 2024, 15:11