In anybody integrate devexpress reporitng and aspnetzero core angular ?
I added reporitng feature to my solution but i got DXXRDV not found error. Devexpress said that "this is a backend problem, your backend can not route."
Muhittin
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>
Hi,
I created a list data screen with core&AngularJS. I copied html and ts files from admin/users component to /main.
At data list table enter key not working at filter textbox. But at user list screen this key working. What is wrong. I used the following code.
<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>
<div class="col-xl-4 text-right">
<button name="RefreshButton" class="btn btn-primary" (click)="refresh()"><i
class="la la-refresh"></i> {{'Refresh' | localize}}</button>
</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.
I have an action named Scan which is triggered from a button. I want to schedule this action.
[AbpAuthorize(AppPermissions.Pages_TrackedHosts_Scan)] public async Task Scan(EntityDto input) { .. .. .. }
I dont understand that code. There are some integrations at Zero Modula with Hangfire and i want to use that.
I need simple code.
Muhittin