Base solution for your next web application

Activities of "feryat.olcay"

Question

Hi,

I need to access the GitHub repo (https://github.com/aspnetzero/aspnet-zero-core).

Can you give me access to the GitHub repo?

My colleague (https://github.com/Yekbun) already has access to the GitHub repo, but I need access as well. (https://github.com/erguntoprak)

What is your product version? 11.0.0

What is your product type (Angular or MVC)? Angular

What is product framework type (.net framework or .net core)? .net core

Hi,

How to enable two factor authentication with email for tenant.

Hi,

We are interested in implementing a ChatHub-like structure within SignalR. Our clients currently utilize Web Services and .Net 4.7.2. However, when attempting to establish a websocket connection similar to ChatHub, we encounter the following error. Could you kindly provide any suggestions or recommendations to resolve this issue?

Error : "Only 'http' and 'https' schemes are allowed. Parameter name: requestUri"

Simple code : HubConnection connection = new HubConnectionBuilder() .WithUrl($"wss://localhost:44301/signalr-data-collector?enc_auth_token={token}") .WithAutomaticReconnect() .Build();

Hi,

What is your product version? V11.4.0 What is your product type (Angular or MVC)? Angular What is the product framework type (.net framework or .net core)? .net core 6

We'd like to ask you before we develop a feature. We use multi-tenancy. We want to develop the tenant and sub-tenant infrastructure. Does the infrastructure of ASP.NET ZERO have a tenant and sub-tenant feature?

Hi,

What is your product version? V11.4.0 What is your product type (Angular or MVC)? Angular What is the product framework type (.net framework or .net core)? .net core 6

We'd like to ask you before we develop a feature. We use multi-tenancy. We want to add Country/City and Timezone features to the tenant. Does the infrastructure of ASP.NET ZERO have Country/City and Timezone features?

Question

Hi,

How to download metronic angular theme (version 8.1.2)

What is your product version? 11.3

What is your product type (Angular or MVC)? Angular

What is product framework type (.net framework or .net core)? .NET Core

Hello, I have a problem with the bsDatepicker [minDate] and [maxDate] of the field effectiveDate and effectiveEndDate of my entity.

I want to add [minDate] and [maxDate] attributes but I get a result like below

<div class="form-group">
                        <label for="BillingHorizonPoolCredit_EffectiveDate">{{ l('EffectiveDate') }} *</label>
                        <div class="input-group">
                            <div class="input-group-prepend">
                                <button class="btn btn-primary" type="button" (click)="dp.toggle()">
                                    <i class="fa fa-calendar-day p-0" style="color: white" aria-hidden="true"></i>
                                </button>
                            </div>
                            <input
                                type="datetime"
                                class="form-control"
                                datePickerLuxonModifier
                                #dp="bsDatepicker"
                                bsDatepicker
                                [bsConfig]="{ adaptivePosition: true }"
                                [isUtc]="true"
                                [maxDate]="billingHorizonPoolCredit.effectiveEndDate"
                                [(date)]="billingHorizonPoolCredit.effectiveDate"
                                [(ngModel)]="billingHorizonPoolCredit.effectiveDate"
                                id="BillingHorizonPoolCredit_EffectiveDate"
                                name="BillingHorizonPoolCredit_EffectiveDate"
                                required
                            />
                        </div>
                        <validation-messages [formCtrl]="dp"></validation-messages>
                    </div>
                    
 <div class="form-group">
                        <label for="BillingHorizonPoolCredit_EffectiveEndDate">{{ l('EffectiveEndDate') }}</label>
                        <div class="input-group">
                            <div class="input-group-prepend">
                                <button class="btn btn-primary" type="button" (click)="dp.toggle()">
                                    <i class="fa fa-calendar-day p-0" style="color: white" aria-hidden="true"></i>
                                </button>
                            </div>
                            <input
                                type="datetime"
                                class="form-control"
                                #dp="bsDatepicker"
                                datePickerLuxonModifier
                                bsDatepicker
                                [bsConfig]="{ adaptivePosition: true }"
                                [isUtc]="true"
                                [minDate]="billingHorizonPoolCredit.effectiveDate"
                                [(date)]="billingHorizonPoolCredit.effectiveEndDate"
                                [(ngModel)]="billingHorizonPoolCredit.effectiveEndDate"
                                id="BillingHorizonPoolCredit_EffectiveEndDate"
                                name="BillingHorizonPoolCredit_EffectiveEndDate"
                            />
                        </div>
                        <validation-messages [formCtrl]="dp"></validation-messages>
                    </div>

Prerequisites

Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.

  • What is your product version? V11.3.0
  • What is your product type (Angular or MVC)? Angular
  • What is product framework type (.net framework or .net core)? .Net Core 6

If issue related with ABP Framework

  • What is ABP Framework version? 7.3

If issue is about UI

  • Which theme are you using? Default
  • What are the theme settings? Default

Hello After upgraded my project from V9.3.0 to V11.3.0 version "p-editor " is not binding [ngMode].
After I change to calling menu's items via model instead of componet than this error getting started. According my search on internet that I have to import FormsModule to the module, even I did it is still same.

Note:I have an open isse about PrimeNg .May be both issues are releated each other .

/HTML/ <div class="col-sm-12"> <div class="form-group"> <p-editor ** [(ngModel)]="update.description" ** [ngModelOptions]="{standalone: true}" [style]="{'height':'320px'}" [modules]="{'imageResize': {'displaySize': true}}"> </p-editor> </div> </div>

/Model/ import { NgModule } from '@angular/core'; import { FormsModule } from '@angular/forms'; ....

Prerequisites

Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.

  • What is your product version? V11.3.0
  • What is your product type (Angular or MVC)? angular
  • What is product framework type (.net framework or .net core)? .Net Core 6.0

If issue related with ABP Framework

  • What is ABP Framework version? 7.3.0

If issue is about UI

  • Which theme are you using? default
  • What are the theme settings? Default

Hello I hope you are well. I have problem with primeng versions above V11.2.3 My current project's version was 9.3.0 and I did upgrade it to V11.3.0.

On my way to upgrading the project I had problem with primeng new versions. The popup pages are not working and can not get data. For example If I have a method like below, The page goes to return line. It can not go to furder.

getOrganizationUnitUsers(event?: LazyLoadEvent) { if (!this._organizationUnit) { return; }

    if (this.primengTableHelper.shouldResetPaging(event)) {
  this.paginator.changePage(0);
  return;

}

// It can not come here this.primengTableHelper.showLoadingIndicator();

I install all version of primeng until 13.0.4 but it is same.

Angular CLI: 13.3.9 Node: 18.12.0 (I installed latest version just yesterday) Package Manager: npm 8.19.2 OS: win32 x64

Thanks

Showing 1 to 9 of 9 entries