I have the same problem. I am restarting app and browser but nothing changed.
I recompiled all codes. Running now.
We solved the problem newly. A friend send me an example code from this support site.
I are working on add devexpress report design feature to aspnetzero.
7.2 angular .net core
I am trying to do the same with the devexpress dashboard controller.
Please could you show me how you did the report integration?
Please send to [email protected]
Thanks
I solve the problem..
<div class="row">
<div class="col-xl-8">
<div class="form-group m-form__group align-items-center">
<div class="input-group">
<input [(ngModel)]="filterText" name="filterText" autoFocus class="form-control m-input" [placeholder]="l('SearchWithThreeDot')" type="text">
<span class="input-group-btn">
<button (click)="getFeedSources()" class="btn btn-primary" type="submit"><i
class="flaticon-search-1"
[attr.aria-label]="l('Search')"></i></button>
</span>
</div>
</div>
</div>
All background and hangfire jobs failed due to current user not logged error. I need a solution for background jobs. Background job must call thefollowing service method which has need authorization like below;
[AbpAuthorize(AppPermissions.Pages_TrackedHosts_Scan)] public async Task Scan(EntityDto input) {
Is there any example about how to pass login parameters to background job.
Settings are ok. I added the following lines to web.mvc startup file.
string cronExp = "1 * * * *"; EntityDto a = new EntityDto(); a.Id = 1; RecurringJob.AddOrUpdate<ITrackedHostsAppService>(x => x.Scan(a), cronExp);
It is running every minute but got this error. Not user logged in. Because this Scan method is need authorization.