Hey everyone,
I've been trying Telerik.Blazor on my free time and I happen to have a bit more free time lately.
My problem :
As soon as I include a custom component with Telerik components in it, i'm having this error when starting the app.
Anybody can help my lack of experience? :) Could it be because my trial has expired?
QueueViewer_Plans.razor
01.
@
using
Autopost_Config.Data.Controllers;
02.
@
using
Autopost_Config.Data.DAL;
03.
04.
@
if
(plans ==
null
)
05.
{
06.
<p><em>Loading...</em></p>
07.
}
08.
else
09.
{
10.
<TelerikGrid Data=
"@plans"
Pageable=
"true"
PageSize=
"10"
Sortable=
"true"
FilterMode=
"Telerik.Blazor.GridFilterMode.FilterRow"
>
11.
<GridColumns>
12.
<GridColumn Field=
"@(nameof(AutopostPlans.Id))"
Title=
"@(nameof(AutopostPlans.Id))"
></GridColumn>
13.
<GridColumn Field=
"@(nameof(AutopostPlans.Task))"
Title=
"@(nameof(AutopostPlans.Task))"
></GridColumn>
14.
<GridColumn Field=
"@(nameof(AutopostPlans.DateAjout))"
Title=
"@(nameof(AutopostPlans.DateAjout))"
></GridColumn>
15.
<GridColumn Field=
"@(nameof(AutopostPlans.Username))"
Title=
"@(nameof(AutopostPlans.Username))"
></GridColumn>
16.
<GridColumn Field=
"@(nameof(AutopostPlans.SendingComputer))"
Title=
"@(nameof(AutopostPlans.SendingComputer))"
></GridColumn>
17.
<GridColumn Field=
"@(nameof(AutopostPlans.PathWorkspace))"
Title=
"@(nameof(AutopostPlans.PathWorkspace))"
></GridColumn>
18.
</GridColumns>
19.
</TelerikGrid>
20.
}
21.
22.
@code {
23.
AutopostPlans[] plans;
24.
protected
override
void
OnInitialized()
25.
{
26.
plans = AutopostPlansController.GetAll();
27.
}
28.
}
Index.razor
01.
@page
"/"
02.
03.
@
using
Autopost_Config.Data
04.
@
using
Autopost_Config.Components;
05.
@
using
Autopost_Config.Data.Controllers;
06.
@
using
Autopost_Config.Data.DAL;
07.
@
using
Autopost_Config.Data.Services;
08.
@inject AutopostDemandesService AutopostDemandesService;
09.
10.
<h1>Configuration de l'autopost RBTK</h1>
11.
12.
<form>
13.
<BlocSelection></BlocSelection>
14.
<QueueViewer_Plans></QueueViewer_Plans>
15.
@*<QueueViewer_Demandes></QueueViewer_Demandes>
16.
<TelerikButton @onclick=
"@(() => AutopostDemandesService.createNewDemand())"
>Lancer l'autopost (Telerik)</TelerikButton>*@
17.
18.
<div
class
=
"form-group row"
>
19.
<div
class
=
"col-sm-10"
>
20.
<button type=
"submit"
class
=
"btn btn-primary"
@onclick=
"@(() => AutopostDemandesService.createNewDemand())"
>Lancer l'autopost</button>
21.
</div>
22.
</div>
23.
</form>
24.
25.
@code {
26.
27.
}