test
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -14,6 +14,7 @@
|
|||||||
|
|
||||||
<h1>Lehrer</h1>
|
<h1>Lehrer</h1>
|
||||||
|
|
||||||
|
|
||||||
<div class="col-lg-12 control-section">
|
<div class="col-lg-12 control-section">
|
||||||
<div class="content-wrapper">
|
<div class="content-wrapper">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
@@ -22,11 +23,11 @@
|
|||||||
<GridEditSettings AllowAdding="false" AllowDeleting="false" AllowEditing="false" Mode="EditMode.Dialog" Dialog="DialogParams"></GridEditSettings>
|
<GridEditSettings AllowAdding="false" AllowDeleting="false" AllowEditing="false" Mode="EditMode.Dialog" Dialog="DialogParams"></GridEditSettings>
|
||||||
<GridEvents OnActionBegin="OnBeginHandler" OnActionComplete="OnCompletedHandler" TValue="Lehrer" OnDataBound="RowDataBoundHandler" CommandClicked="CommandClickHandler"></GridEvents>
|
<GridEvents OnActionBegin="OnBeginHandler" OnActionComplete="OnCompletedHandler" TValue="Lehrer" OnDataBound="RowDataBoundHandler" CommandClicked="CommandClickHandler"></GridEvents>
|
||||||
<GridColumns>
|
<GridColumns>
|
||||||
<GridColumn Type="ColumnType.CheckBox" AllowFiltering="false" AllowSorting="false" Width="60"></GridColumn>
|
@* <GridColumn Type="ColumnType.CheckBox" AllowFiltering="false" AllowSorting="false" Width="60"></GridColumn>*@
|
||||||
|
|
||||||
<GridColumn Field=@nameof(Lehrer.ID) HeaderText="Id" IsPrimaryKey="true" AllowAdding="false" Width="60"></GridColumn>
|
<GridColumn Field=@nameof(Lehrer.ID) HeaderText="Id" IsPrimaryKey="true" AllowAdding="false" Width="60" Visible="true"></GridColumn>
|
||||||
|
|
||||||
<GridColumn Field=@nameof(Lehrer.anredeID) HeaderText="Anredeid" Width="100" Visible="true"></GridColumn>
|
<GridColumn Field=@nameof(Lehrer.anredeID) HeaderText="Anredeid" Width="100" Visible="false"></GridColumn>
|
||||||
|
|
||||||
<GridColumn Field=@nameof(Lehrer.name) HeaderText="Name" Width="100" Visible="true"></GridColumn>
|
<GridColumn Field=@nameof(Lehrer.name) HeaderText="Name" Width="100" Visible="true"></GridColumn>
|
||||||
|
|
||||||
@@ -38,8 +39,10 @@
|
|||||||
|
|
||||||
<GridColumn Field=@nameof(Lehrer.email) HeaderText="Email" Width="100" Visible="true"></GridColumn>
|
<GridColumn Field=@nameof(Lehrer.email) HeaderText="Email" Width="100" Visible="true"></GridColumn>
|
||||||
|
|
||||||
<GridColumn Field=@nameof(Lehrer.schulhausID) HeaderText="Schulhausid" Width="100" Visible="true"></GridColumn>
|
@*<GridColumn Field=@nameof(Lehrer.schulhausID) HeaderText="Schulhaus" Width="100" Visible="true">*@
|
||||||
|
<GridForeignColumn Field=@nameof(Lehrer.schulhausID) HeaderText="Schulhaus" ForeignKeyValue=@nameof(BWPMModels.Schulhaus.bezeichnung) ForeignKeyField=@nameof(BWPMModels.Schulhaus.ID) ForeignDataSource="@Schulhaus" Width="100"></GridForeignColumn>
|
||||||
|
@*</GridColumn>
|
||||||
|
*@
|
||||||
@*<GridColumn Field=@nameof(Lehrer.briefanrede) HeaderText="Briefanrede" Width="100" Visible="true"></GridColumn>
|
@*<GridColumn Field=@nameof(Lehrer.briefanrede) HeaderText="Briefanrede" Width="100" Visible="true"></GridColumn>
|
||||||
|
|
||||||
<GridColumn Field=@nameof(Lehrer.mandantnr) HeaderText="Mandantnr" Width="100" Visible="true"></GridColumn>
|
<GridColumn Field=@nameof(Lehrer.mandantnr) HeaderText="Mandantnr" Width="100" Visible="true"></GridColumn>
|
||||||
@@ -52,7 +55,7 @@
|
|||||||
|
|
||||||
<GridColumn Field=@nameof(Lehrer.mutierer) HeaderText="Mutierer" Width="100" Visible="true"></GridColumn>*@
|
<GridColumn Field=@nameof(Lehrer.mutierer) HeaderText="Mutierer" Width="100" Visible="true"></GridColumn>*@
|
||||||
|
|
||||||
<GridColumn Field=@nameof(Lehrer.userid) HeaderText="Userid" Width="100" Visible="true"></GridColumn>
|
<GridColumn Field=@nameof(Lehrer.userid) HeaderText="Userid" Width="100" Visible="false"></GridColumn>
|
||||||
|
|
||||||
<GridColumn HeaderText="Funktionen" Width="150">
|
<GridColumn HeaderText="Funktionen" Width="150">
|
||||||
<GridCommandColumns>
|
<GridCommandColumns>
|
||||||
@@ -113,6 +116,7 @@
|
|||||||
public List<BWPMModels.Lehrer> Lehrers { get; set; }
|
public List<BWPMModels.Lehrer> Lehrers { get; set; }
|
||||||
public List<BWPMModels.Lehrer> TmpLehrer { get; set; }
|
public List<BWPMModels.Lehrer> TmpLehrer { get; set; }
|
||||||
public List<BWPMModels.AspNetUsers> Users { get; set; }
|
public List<BWPMModels.AspNetUsers> Users { get; set; }
|
||||||
|
public List<BWPMModels.Schulhaus> Schulhaus { get; set; }
|
||||||
string userid = "";
|
string userid = "";
|
||||||
public static int? pkey { get; set; }
|
public static int? pkey { get; set; }
|
||||||
public bool Initial { get; set; } = true;
|
public bool Initial { get; set; } = true;
|
||||||
@@ -126,6 +130,7 @@
|
|||||||
{
|
{
|
||||||
/// GridData = OrdersDetails.GetAllRecords();
|
/// GridData = OrdersDetails.GetAllRecords();
|
||||||
GridData = BlazorApp.Controller.LehrerController.GetAllData();
|
GridData = BlazorApp.Controller.LehrerController.GetAllData();
|
||||||
|
Schulhaus = BlazorApp.Controller.SchulhausController.GetAllData();
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override async Task OnAfterRenderAsync(bool firstRender)
|
protected override async Task OnAfterRenderAsync(bool firstRender)
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,4 +1,4 @@
|
|||||||
#pragma checksum "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "7e375376e574629168b45eb572ba9482d66d907b"
|
#pragma checksum "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "9163494c7aa34e2edcb0e24df6e12bd0444c1c55"
|
||||||
// <auto-generated/>
|
// <auto-generated/>
|
||||||
#pragma warning disable 1591
|
#pragma warning disable 1591
|
||||||
namespace BlazorApp.Pages.Admin.Teacher
|
namespace BlazorApp.Pages.Admin.Teacher
|
||||||
@@ -326,38 +326,7 @@ using BlazorApp.Controller;
|
|||||||
__builder2.OpenComponent<Syncfusion.Blazor.Grids.GridColumns>(30);
|
__builder2.OpenComponent<Syncfusion.Blazor.Grids.GridColumns>(30);
|
||||||
__builder2.AddAttribute(31, "ChildContent", (Microsoft.AspNetCore.Components.RenderFragment)((__builder3) => {
|
__builder2.AddAttribute(31, "ChildContent", (Microsoft.AspNetCore.Components.RenderFragment)((__builder3) => {
|
||||||
__builder3.OpenComponent<Syncfusion.Blazor.Grids.GridColumn>(32);
|
__builder3.OpenComponent<Syncfusion.Blazor.Grids.GridColumn>(32);
|
||||||
__builder3.AddAttribute(33, "Type", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<Syncfusion.Blazor.Grids.ColumnType>(
|
__builder3.AddAttribute(33, "Field", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.String>(
|
||||||
#nullable restore
|
|
||||||
#line 25 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
|
||||||
ColumnType.CheckBox
|
|
||||||
|
|
||||||
#line default
|
|
||||||
#line hidden
|
|
||||||
#nullable disable
|
|
||||||
));
|
|
||||||
__builder3.AddAttribute(34, "AllowFiltering", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.Boolean>(
|
|
||||||
#nullable restore
|
|
||||||
#line 25 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
|
||||||
false
|
|
||||||
|
|
||||||
#line default
|
|
||||||
#line hidden
|
|
||||||
#nullable disable
|
|
||||||
));
|
|
||||||
__builder3.AddAttribute(35, "AllowSorting", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.Boolean>(
|
|
||||||
#nullable restore
|
|
||||||
#line 25 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
|
||||||
false
|
|
||||||
|
|
||||||
#line default
|
|
||||||
#line hidden
|
|
||||||
#nullable disable
|
|
||||||
));
|
|
||||||
__builder3.AddAttribute(36, "Width", "60");
|
|
||||||
__builder3.CloseComponent();
|
|
||||||
__builder3.AddMarkupContent(37, "\r\n\r\n");
|
|
||||||
__builder3.OpenComponent<Syncfusion.Blazor.Grids.GridColumn>(38);
|
|
||||||
__builder3.AddAttribute(39, "Field", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.String>(
|
|
||||||
#nullable restore
|
#nullable restore
|
||||||
#line 27 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
#line 27 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
nameof(Lehrer.ID)
|
nameof(Lehrer.ID)
|
||||||
@@ -366,8 +335,8 @@ using BlazorApp.Controller;
|
|||||||
#line hidden
|
#line hidden
|
||||||
#nullable disable
|
#nullable disable
|
||||||
));
|
));
|
||||||
__builder3.AddAttribute(40, "HeaderText", "Id");
|
__builder3.AddAttribute(34, "HeaderText", "Id");
|
||||||
__builder3.AddAttribute(41, "IsPrimaryKey", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.Boolean>(
|
__builder3.AddAttribute(35, "IsPrimaryKey", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.Boolean>(
|
||||||
#nullable restore
|
#nullable restore
|
||||||
#line 27 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
#line 27 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
true
|
true
|
||||||
@@ -376,7 +345,7 @@ using BlazorApp.Controller;
|
|||||||
#line hidden
|
#line hidden
|
||||||
#nullable disable
|
#nullable disable
|
||||||
));
|
));
|
||||||
__builder3.AddAttribute(42, "AllowAdding", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.Boolean>(
|
__builder3.AddAttribute(36, "AllowAdding", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.Boolean>(
|
||||||
#nullable restore
|
#nullable restore
|
||||||
#line 27 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
#line 27 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
false
|
false
|
||||||
@@ -385,11 +354,20 @@ using BlazorApp.Controller;
|
|||||||
#line hidden
|
#line hidden
|
||||||
#nullable disable
|
#nullable disable
|
||||||
));
|
));
|
||||||
__builder3.AddAttribute(43, "Width", "60");
|
__builder3.AddAttribute(37, "Width", "60");
|
||||||
|
__builder3.AddAttribute(38, "Visible", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.Boolean>(
|
||||||
|
#nullable restore
|
||||||
|
#line 27 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
|
true
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
));
|
||||||
__builder3.CloseComponent();
|
__builder3.CloseComponent();
|
||||||
__builder3.AddMarkupContent(44, "\r\n\r\n");
|
__builder3.AddMarkupContent(39, "\r\n\r\n");
|
||||||
__builder3.OpenComponent<Syncfusion.Blazor.Grids.GridColumn>(45);
|
__builder3.OpenComponent<Syncfusion.Blazor.Grids.GridColumn>(40);
|
||||||
__builder3.AddAttribute(46, "Field", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.String>(
|
__builder3.AddAttribute(41, "Field", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.String>(
|
||||||
#nullable restore
|
#nullable restore
|
||||||
#line 29 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
#line 29 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
nameof(Lehrer.anredeID)
|
nameof(Lehrer.anredeID)
|
||||||
@@ -398,21 +376,21 @@ using BlazorApp.Controller;
|
|||||||
#line hidden
|
#line hidden
|
||||||
#nullable disable
|
#nullable disable
|
||||||
));
|
));
|
||||||
__builder3.AddAttribute(47, "HeaderText", "Anredeid");
|
__builder3.AddAttribute(42, "HeaderText", "Anredeid");
|
||||||
__builder3.AddAttribute(48, "Width", "100");
|
__builder3.AddAttribute(43, "Width", "100");
|
||||||
__builder3.AddAttribute(49, "Visible", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.Boolean>(
|
__builder3.AddAttribute(44, "Visible", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.Boolean>(
|
||||||
#nullable restore
|
#nullable restore
|
||||||
#line 29 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
#line 29 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
true
|
false
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
#nullable disable
|
#nullable disable
|
||||||
));
|
));
|
||||||
__builder3.CloseComponent();
|
__builder3.CloseComponent();
|
||||||
__builder3.AddMarkupContent(50, "\r\n\r\n");
|
__builder3.AddMarkupContent(45, "\r\n\r\n");
|
||||||
__builder3.OpenComponent<Syncfusion.Blazor.Grids.GridColumn>(51);
|
__builder3.OpenComponent<Syncfusion.Blazor.Grids.GridColumn>(46);
|
||||||
__builder3.AddAttribute(52, "Field", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.String>(
|
__builder3.AddAttribute(47, "Field", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.String>(
|
||||||
#nullable restore
|
#nullable restore
|
||||||
#line 31 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
#line 31 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
nameof(Lehrer.name)
|
nameof(Lehrer.name)
|
||||||
@@ -421,9 +399,9 @@ using BlazorApp.Controller;
|
|||||||
#line hidden
|
#line hidden
|
||||||
#nullable disable
|
#nullable disable
|
||||||
));
|
));
|
||||||
__builder3.AddAttribute(53, "HeaderText", "Name");
|
__builder3.AddAttribute(48, "HeaderText", "Name");
|
||||||
__builder3.AddAttribute(54, "Width", "100");
|
__builder3.AddAttribute(49, "Width", "100");
|
||||||
__builder3.AddAttribute(55, "Visible", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.Boolean>(
|
__builder3.AddAttribute(50, "Visible", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.Boolean>(
|
||||||
#nullable restore
|
#nullable restore
|
||||||
#line 31 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
#line 31 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
true
|
true
|
||||||
@@ -433,9 +411,9 @@ using BlazorApp.Controller;
|
|||||||
#nullable disable
|
#nullable disable
|
||||||
));
|
));
|
||||||
__builder3.CloseComponent();
|
__builder3.CloseComponent();
|
||||||
__builder3.AddMarkupContent(56, "\r\n\r\n");
|
__builder3.AddMarkupContent(51, "\r\n\r\n");
|
||||||
__builder3.OpenComponent<Syncfusion.Blazor.Grids.GridColumn>(57);
|
__builder3.OpenComponent<Syncfusion.Blazor.Grids.GridColumn>(52);
|
||||||
__builder3.AddAttribute(58, "Field", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.String>(
|
__builder3.AddAttribute(53, "Field", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.String>(
|
||||||
#nullable restore
|
#nullable restore
|
||||||
#line 33 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
#line 33 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
nameof(Lehrer.vorname)
|
nameof(Lehrer.vorname)
|
||||||
@@ -444,9 +422,9 @@ using BlazorApp.Controller;
|
|||||||
#line hidden
|
#line hidden
|
||||||
#nullable disable
|
#nullable disable
|
||||||
));
|
));
|
||||||
__builder3.AddAttribute(59, "HeaderText", "Vorname");
|
__builder3.AddAttribute(54, "HeaderText", "Vorname");
|
||||||
__builder3.AddAttribute(60, "Width", "100");
|
__builder3.AddAttribute(55, "Width", "100");
|
||||||
__builder3.AddAttribute(61, "Visible", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.Boolean>(
|
__builder3.AddAttribute(56, "Visible", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.Boolean>(
|
||||||
#nullable restore
|
#nullable restore
|
||||||
#line 33 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
#line 33 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
true
|
true
|
||||||
@@ -456,9 +434,9 @@ using BlazorApp.Controller;
|
|||||||
#nullable disable
|
#nullable disable
|
||||||
));
|
));
|
||||||
__builder3.CloseComponent();
|
__builder3.CloseComponent();
|
||||||
__builder3.AddMarkupContent(62, "\r\n\r\n");
|
__builder3.AddMarkupContent(57, "\r\n\r\n");
|
||||||
__builder3.OpenComponent<Syncfusion.Blazor.Grids.GridColumn>(63);
|
__builder3.OpenComponent<Syncfusion.Blazor.Grids.GridColumn>(58);
|
||||||
__builder3.AddAttribute(64, "Field", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.String>(
|
__builder3.AddAttribute(59, "Field", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.String>(
|
||||||
#nullable restore
|
#nullable restore
|
||||||
#line 35 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
#line 35 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
nameof(Lehrer.tel)
|
nameof(Lehrer.tel)
|
||||||
@@ -467,9 +445,9 @@ using BlazorApp.Controller;
|
|||||||
#line hidden
|
#line hidden
|
||||||
#nullable disable
|
#nullable disable
|
||||||
));
|
));
|
||||||
__builder3.AddAttribute(65, "HeaderText", "Tel");
|
__builder3.AddAttribute(60, "HeaderText", "Tel");
|
||||||
__builder3.AddAttribute(66, "Width", "100");
|
__builder3.AddAttribute(61, "Width", "100");
|
||||||
__builder3.AddAttribute(67, "Visible", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.Boolean>(
|
__builder3.AddAttribute(62, "Visible", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.Boolean>(
|
||||||
#nullable restore
|
#nullable restore
|
||||||
#line 35 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
#line 35 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
true
|
true
|
||||||
@@ -479,9 +457,9 @@ using BlazorApp.Controller;
|
|||||||
#nullable disable
|
#nullable disable
|
||||||
));
|
));
|
||||||
__builder3.CloseComponent();
|
__builder3.CloseComponent();
|
||||||
__builder3.AddMarkupContent(68, "\r\n\r\n");
|
__builder3.AddMarkupContent(63, "\r\n\r\n");
|
||||||
__builder3.OpenComponent<Syncfusion.Blazor.Grids.GridColumn>(69);
|
__builder3.OpenComponent<Syncfusion.Blazor.Grids.GridColumn>(64);
|
||||||
__builder3.AddAttribute(70, "Field", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.String>(
|
__builder3.AddAttribute(65, "Field", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.String>(
|
||||||
#nullable restore
|
#nullable restore
|
||||||
#line 37 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
#line 37 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
nameof(Lehrer.handy)
|
nameof(Lehrer.handy)
|
||||||
@@ -490,9 +468,9 @@ using BlazorApp.Controller;
|
|||||||
#line hidden
|
#line hidden
|
||||||
#nullable disable
|
#nullable disable
|
||||||
));
|
));
|
||||||
__builder3.AddAttribute(71, "HeaderText", "Handy");
|
__builder3.AddAttribute(66, "HeaderText", "Handy");
|
||||||
__builder3.AddAttribute(72, "Width", "100");
|
__builder3.AddAttribute(67, "Width", "100");
|
||||||
__builder3.AddAttribute(73, "Visible", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.Boolean>(
|
__builder3.AddAttribute(68, "Visible", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.Boolean>(
|
||||||
#nullable restore
|
#nullable restore
|
||||||
#line 37 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
#line 37 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
true
|
true
|
||||||
@@ -502,9 +480,9 @@ using BlazorApp.Controller;
|
|||||||
#nullable disable
|
#nullable disable
|
||||||
));
|
));
|
||||||
__builder3.CloseComponent();
|
__builder3.CloseComponent();
|
||||||
__builder3.AddMarkupContent(74, "\r\n\r\n");
|
__builder3.AddMarkupContent(69, "\r\n\r\n");
|
||||||
__builder3.OpenComponent<Syncfusion.Blazor.Grids.GridColumn>(75);
|
__builder3.OpenComponent<Syncfusion.Blazor.Grids.GridColumn>(70);
|
||||||
__builder3.AddAttribute(76, "Field", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.String>(
|
__builder3.AddAttribute(71, "Field", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.String>(
|
||||||
#nullable restore
|
#nullable restore
|
||||||
#line 39 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
#line 39 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
nameof(Lehrer.email)
|
nameof(Lehrer.email)
|
||||||
@@ -513,9 +491,9 @@ using BlazorApp.Controller;
|
|||||||
#line hidden
|
#line hidden
|
||||||
#nullable disable
|
#nullable disable
|
||||||
));
|
));
|
||||||
__builder3.AddAttribute(77, "HeaderText", "Email");
|
__builder3.AddAttribute(72, "HeaderText", "Email");
|
||||||
__builder3.AddAttribute(78, "Width", "100");
|
__builder3.AddAttribute(73, "Width", "100");
|
||||||
__builder3.AddAttribute(79, "Visible", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.Boolean>(
|
__builder3.AddAttribute(74, "Visible", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.Boolean>(
|
||||||
#nullable restore
|
#nullable restore
|
||||||
#line 39 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
#line 39 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
true
|
true
|
||||||
@@ -525,73 +503,84 @@ using BlazorApp.Controller;
|
|||||||
#nullable disable
|
#nullable disable
|
||||||
));
|
));
|
||||||
__builder3.CloseComponent();
|
__builder3.CloseComponent();
|
||||||
__builder3.AddMarkupContent(80, "\r\n\r\n");
|
__builder3.AddMarkupContent(75, "\r\n\r\n ");
|
||||||
__builder3.OpenComponent<Syncfusion.Blazor.Grids.GridColumn>(81);
|
__Blazor.BlazorApp.Pages.Admin.Teacher.Teacher.TypeInference.CreateGridForeignColumn_1(__builder3, 76, 77,
|
||||||
__builder3.AddAttribute(82, "Field", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.String>(
|
|
||||||
#nullable restore
|
#nullable restore
|
||||||
#line 41 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
#line 42 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
nameof(Lehrer.schulhausID)
|
nameof(Lehrer.schulhausID)
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
#nullable disable
|
#nullable disable
|
||||||
));
|
, 78, "Schulhaus", 79,
|
||||||
__builder3.AddAttribute(83, "HeaderText", "Schulhausid");
|
|
||||||
__builder3.AddAttribute(84, "Width", "100");
|
|
||||||
__builder3.AddAttribute(85, "Visible", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.Boolean>(
|
|
||||||
#nullable restore
|
#nullable restore
|
||||||
#line 41 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
#line 42 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
true
|
nameof(BWPMModels.Schulhaus.bezeichnung)
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
#nullable disable
|
#nullable disable
|
||||||
));
|
, 80,
|
||||||
__builder3.CloseComponent();
|
|
||||||
__builder3.AddMarkupContent(86, "\r\n\r\n\r\n");
|
|
||||||
__builder3.OpenComponent<Syncfusion.Blazor.Grids.GridColumn>(87);
|
|
||||||
__builder3.AddAttribute(88, "Field", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.String>(
|
|
||||||
#nullable restore
|
#nullable restore
|
||||||
#line 55 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
#line 42 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
|
nameof(BWPMModels.Schulhaus.ID)
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
, 81,
|
||||||
|
#nullable restore
|
||||||
|
#line 42 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
|
Schulhaus
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
, 82, "100");
|
||||||
|
__builder3.AddMarkupContent(83, "\r\n\r\n");
|
||||||
|
__builder3.OpenComponent<Syncfusion.Blazor.Grids.GridColumn>(84);
|
||||||
|
__builder3.AddAttribute(85, "Field", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.String>(
|
||||||
|
#nullable restore
|
||||||
|
#line 57 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
nameof(Lehrer.userid)
|
nameof(Lehrer.userid)
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
#nullable disable
|
#nullable disable
|
||||||
));
|
));
|
||||||
__builder3.AddAttribute(89, "HeaderText", "Userid");
|
__builder3.AddAttribute(86, "HeaderText", "Userid");
|
||||||
__builder3.AddAttribute(90, "Width", "100");
|
__builder3.AddAttribute(87, "Width", "100");
|
||||||
__builder3.AddAttribute(91, "Visible", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.Boolean>(
|
__builder3.AddAttribute(88, "Visible", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.Boolean>(
|
||||||
#nullable restore
|
#nullable restore
|
||||||
#line 55 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
#line 57 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
true
|
false
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
#nullable disable
|
#nullable disable
|
||||||
));
|
));
|
||||||
__builder3.CloseComponent();
|
__builder3.CloseComponent();
|
||||||
__builder3.AddMarkupContent(92, "\r\n\r\n ");
|
__builder3.AddMarkupContent(89, "\r\n\r\n ");
|
||||||
__builder3.OpenComponent<Syncfusion.Blazor.Grids.GridColumn>(93);
|
__builder3.OpenComponent<Syncfusion.Blazor.Grids.GridColumn>(90);
|
||||||
__builder3.AddAttribute(94, "HeaderText", "Funktionen");
|
__builder3.AddAttribute(91, "HeaderText", "Funktionen");
|
||||||
__builder3.AddAttribute(95, "Width", "150");
|
__builder3.AddAttribute(92, "Width", "150");
|
||||||
__builder3.AddAttribute(96, "ChildContent", (Microsoft.AspNetCore.Components.RenderFragment)((__builder4) => {
|
__builder3.AddAttribute(93, "ChildContent", (Microsoft.AspNetCore.Components.RenderFragment)((__builder4) => {
|
||||||
__builder4.OpenComponent<Syncfusion.Blazor.Grids.GridCommandColumns>(97);
|
__builder4.OpenComponent<Syncfusion.Blazor.Grids.GridCommandColumns>(94);
|
||||||
__builder4.AddAttribute(98, "ChildContent", (Microsoft.AspNetCore.Components.RenderFragment)((__builder5) => {
|
__builder4.AddAttribute(95, "ChildContent", (Microsoft.AspNetCore.Components.RenderFragment)((__builder5) => {
|
||||||
__builder5.OpenComponent<Syncfusion.Blazor.Grids.GridCommandColumn>(99);
|
__builder5.OpenComponent<Syncfusion.Blazor.Grids.GridCommandColumn>(96);
|
||||||
__builder5.AddAttribute(100, "Title", "Lehrer-Daten");
|
__builder5.AddAttribute(97, "Title", "Lehrer-Daten");
|
||||||
__builder5.AddAttribute(101, "Type", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<Syncfusion.Blazor.Grids.CommandButtonType>(
|
__builder5.AddAttribute(98, "Type", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<Syncfusion.Blazor.Grids.CommandButtonType>(
|
||||||
#nullable restore
|
#nullable restore
|
||||||
#line 59 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
#line 61 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
CommandButtonType.None
|
CommandButtonType.None
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
#nullable disable
|
#nullable disable
|
||||||
));
|
));
|
||||||
__builder5.AddAttribute(102, "ButtonOption", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<Syncfusion.Blazor.Grids.CommandButtonOptions>(
|
__builder5.AddAttribute(99, "ButtonOption", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<Syncfusion.Blazor.Grids.CommandButtonOptions>(
|
||||||
#nullable restore
|
#nullable restore
|
||||||
#line 59 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
#line 61 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
new CommandButtonOptions() {IconCss="fas fa-pen", CssClass="e-flat" }
|
new CommandButtonOptions() {IconCss="fas fa-pen", CssClass="e-flat" }
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
@@ -599,21 +588,21 @@ using BlazorApp.Controller;
|
|||||||
#nullable disable
|
#nullable disable
|
||||||
));
|
));
|
||||||
__builder5.CloseComponent();
|
__builder5.CloseComponent();
|
||||||
__builder5.AddMarkupContent(103, "\r\n ");
|
__builder5.AddMarkupContent(100, "\r\n ");
|
||||||
__builder5.OpenComponent<Syncfusion.Blazor.Grids.GridCommandColumn>(104);
|
__builder5.OpenComponent<Syncfusion.Blazor.Grids.GridCommandColumn>(101);
|
||||||
__builder5.AddAttribute(105, "Title", "Schüler-Daten");
|
__builder5.AddAttribute(102, "Title", "Schüler-Daten");
|
||||||
__builder5.AddAttribute(106, "Type", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<Syncfusion.Blazor.Grids.CommandButtonType>(
|
__builder5.AddAttribute(103, "Type", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<Syncfusion.Blazor.Grids.CommandButtonType>(
|
||||||
#nullable restore
|
#nullable restore
|
||||||
#line 60 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
#line 62 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
CommandButtonType.None
|
CommandButtonType.None
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
#nullable disable
|
#nullable disable
|
||||||
));
|
));
|
||||||
__builder5.AddAttribute(107, "ButtonOption", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<Syncfusion.Blazor.Grids.CommandButtonOptions>(
|
__builder5.AddAttribute(104, "ButtonOption", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<Syncfusion.Blazor.Grids.CommandButtonOptions>(
|
||||||
#nullable restore
|
#nullable restore
|
||||||
#line 60 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
#line 62 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
new CommandButtonOptions() {IconCss="fas fa-user", CssClass="e-flat" }
|
new CommandButtonOptions() {IconCss="fas fa-user", CssClass="e-flat" }
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
@@ -621,21 +610,21 @@ using BlazorApp.Controller;
|
|||||||
#nullable disable
|
#nullable disable
|
||||||
));
|
));
|
||||||
__builder5.CloseComponent();
|
__builder5.CloseComponent();
|
||||||
__builder5.AddMarkupContent(108, "\r\n\r\n ");
|
__builder5.AddMarkupContent(105, "\r\n\r\n ");
|
||||||
__builder5.OpenComponent<Syncfusion.Blazor.Grids.GridCommandColumn>(109);
|
__builder5.OpenComponent<Syncfusion.Blazor.Grids.GridCommandColumn>(106);
|
||||||
__builder5.AddAttribute(110, "Title", "Löschen");
|
__builder5.AddAttribute(107, "Title", "Löschen");
|
||||||
__builder5.AddAttribute(111, "Type", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<Syncfusion.Blazor.Grids.CommandButtonType>(
|
__builder5.AddAttribute(108, "Type", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<Syncfusion.Blazor.Grids.CommandButtonType>(
|
||||||
#nullable restore
|
#nullable restore
|
||||||
#line 62 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
#line 64 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
CommandButtonType.None
|
CommandButtonType.None
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
#nullable disable
|
#nullable disable
|
||||||
));
|
));
|
||||||
__builder5.AddAttribute(112, "ButtonOption", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<Syncfusion.Blazor.Grids.CommandButtonOptions>(
|
__builder5.AddAttribute(109, "ButtonOption", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<Syncfusion.Blazor.Grids.CommandButtonOptions>(
|
||||||
#nullable restore
|
#nullable restore
|
||||||
#line 62 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
#line 64 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
new CommandButtonOptions() {IconCss="e-icons e-delete", CssClass="e-flat" }
|
new CommandButtonOptions() {IconCss="e-icons e-delete", CssClass="e-flat" }
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
@@ -643,21 +632,21 @@ using BlazorApp.Controller;
|
|||||||
#nullable disable
|
#nullable disable
|
||||||
));
|
));
|
||||||
__builder5.CloseComponent();
|
__builder5.CloseComponent();
|
||||||
__builder5.AddMarkupContent(113, "\r\n ");
|
__builder5.AddMarkupContent(110, "\r\n ");
|
||||||
__builder5.OpenComponent<Syncfusion.Blazor.Grids.GridCommandColumn>(114);
|
__builder5.OpenComponent<Syncfusion.Blazor.Grids.GridCommandColumn>(111);
|
||||||
__builder5.AddAttribute(115, "Title", "EMail");
|
__builder5.AddAttribute(112, "Title", "EMail");
|
||||||
__builder5.AddAttribute(116, "Type", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<Syncfusion.Blazor.Grids.CommandButtonType>(
|
__builder5.AddAttribute(113, "Type", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<Syncfusion.Blazor.Grids.CommandButtonType>(
|
||||||
#nullable restore
|
#nullable restore
|
||||||
#line 63 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
#line 65 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
CommandButtonType.None
|
CommandButtonType.None
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
#nullable disable
|
#nullable disable
|
||||||
));
|
));
|
||||||
__builder5.AddAttribute(117, "ButtonOption", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<Syncfusion.Blazor.Grids.CommandButtonOptions>(
|
__builder5.AddAttribute(114, "ButtonOption", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<Syncfusion.Blazor.Grids.CommandButtonOptions>(
|
||||||
#nullable restore
|
#nullable restore
|
||||||
#line 63 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
#line 65 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
new CommandButtonOptions() {IconCss="e-icons e-mail", CssClass="e-flat" }
|
new CommandButtonOptions() {IconCss="e-icons e-mail", CssClass="e-flat" }
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
@@ -675,7 +664,7 @@ using BlazorApp.Controller;
|
|||||||
));
|
));
|
||||||
__builder2.CloseComponent();
|
__builder2.CloseComponent();
|
||||||
}
|
}
|
||||||
, 118, (__value) => {
|
, 115, (__value) => {
|
||||||
#nullable restore
|
#nullable restore
|
||||||
#line 20 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
#line 20 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
Grid = __value;
|
Grid = __value;
|
||||||
@@ -688,42 +677,42 @@ using BlazorApp.Controller;
|
|||||||
__builder.CloseElement();
|
__builder.CloseElement();
|
||||||
__builder.CloseElement();
|
__builder.CloseElement();
|
||||||
__builder.CloseElement();
|
__builder.CloseElement();
|
||||||
__builder.AddMarkupContent(119, "\r\n");
|
__builder.AddMarkupContent(116, "\r\n");
|
||||||
__builder.OpenElement(120, "div");
|
__builder.OpenElement(117, "div");
|
||||||
__builder.AddAttribute(121, "class", "col-lg-12 control-section toast-default-section");
|
__builder.AddAttribute(118, "class", "col-lg-12 control-section toast-default-section");
|
||||||
__builder.OpenComponent<Syncfusion.Blazor.Notifications.SfToast>(122);
|
__builder.OpenComponent<Syncfusion.Blazor.Notifications.SfToast>(119);
|
||||||
__builder.AddAttribute(123, "ID", "toast_default");
|
__builder.AddAttribute(120, "ID", "toast_default");
|
||||||
__builder.AddAttribute(124, "Content", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.String>(
|
__builder.AddAttribute(121, "Content", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.String>(
|
||||||
#nullable restore
|
#nullable restore
|
||||||
#line 73 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
#line 75 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
ToastContent
|
ToastContent
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
#nullable disable
|
#nullable disable
|
||||||
));
|
));
|
||||||
__builder.AddAttribute(125, "Timeout", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.Int32>(
|
__builder.AddAttribute(122, "Timeout", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<System.Int32>(
|
||||||
#nullable restore
|
#nullable restore
|
||||||
#line 73 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
#line 75 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
5000
|
5000
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
#nullable disable
|
#nullable disable
|
||||||
));
|
));
|
||||||
__builder.AddAttribute(126, "Icon", "e-meeting");
|
__builder.AddAttribute(123, "Icon", "e-meeting");
|
||||||
__builder.AddAttribute(127, "ChildContent", (Microsoft.AspNetCore.Components.RenderFragment)((__builder2) => {
|
__builder.AddAttribute(124, "ChildContent", (Microsoft.AspNetCore.Components.RenderFragment)((__builder2) => {
|
||||||
__builder2.OpenComponent<Syncfusion.Blazor.Notifications.ToastPosition>(128);
|
__builder2.OpenComponent<Syncfusion.Blazor.Notifications.ToastPosition>(125);
|
||||||
__builder2.AddAttribute(129, "X", "Right");
|
__builder2.AddAttribute(126, "X", "Right");
|
||||||
__builder2.AddAttribute(130, "Y", "Bottom");
|
__builder2.AddAttribute(127, "Y", "Bottom");
|
||||||
__builder2.CloseComponent();
|
__builder2.CloseComponent();
|
||||||
__builder2.AddMarkupContent(131, "\r\n ");
|
__builder2.AddMarkupContent(128, "\r\n ");
|
||||||
__builder2.OpenComponent<Syncfusion.Blazor.Notifications.ToastAnimationSettings>(132);
|
__builder2.OpenComponent<Syncfusion.Blazor.Notifications.ToastAnimationSettings>(129);
|
||||||
__builder2.AddAttribute(133, "ChildContent", (Microsoft.AspNetCore.Components.RenderFragment)((__builder3) => {
|
__builder2.AddAttribute(130, "ChildContent", (Microsoft.AspNetCore.Components.RenderFragment)((__builder3) => {
|
||||||
__builder3.OpenComponent<Syncfusion.Blazor.Notifications.ToastShowAnimationSettings>(134);
|
__builder3.OpenComponent<Syncfusion.Blazor.Notifications.ToastShowAnimationSettings>(131);
|
||||||
__builder3.AddAttribute(135, "Effect", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<Syncfusion.Blazor.Notifications.ToastEffect>(
|
__builder3.AddAttribute(132, "Effect", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<Syncfusion.Blazor.Notifications.ToastEffect>(
|
||||||
#nullable restore
|
#nullable restore
|
||||||
#line 76 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
#line 78 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
ShowAnimation
|
ShowAnimation
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
@@ -731,11 +720,11 @@ using BlazorApp.Controller;
|
|||||||
#nullable disable
|
#nullable disable
|
||||||
));
|
));
|
||||||
__builder3.CloseComponent();
|
__builder3.CloseComponent();
|
||||||
__builder3.AddMarkupContent(136, "\r\n ");
|
__builder3.AddMarkupContent(133, "\r\n ");
|
||||||
__builder3.OpenComponent<Syncfusion.Blazor.Notifications.ToastHideAnimationSettings>(137);
|
__builder3.OpenComponent<Syncfusion.Blazor.Notifications.ToastHideAnimationSettings>(134);
|
||||||
__builder3.AddAttribute(138, "Effect", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<Syncfusion.Blazor.Notifications.ToastEffect>(
|
__builder3.AddAttribute(135, "Effect", global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<Syncfusion.Blazor.Notifications.ToastEffect>(
|
||||||
#nullable restore
|
#nullable restore
|
||||||
#line 77 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
#line 79 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
HideAnimation
|
HideAnimation
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
@@ -748,9 +737,9 @@ using BlazorApp.Controller;
|
|||||||
__builder2.CloseComponent();
|
__builder2.CloseComponent();
|
||||||
}
|
}
|
||||||
));
|
));
|
||||||
__builder.AddComponentReferenceCapture(139, (__value) => {
|
__builder.AddComponentReferenceCapture(136, (__value) => {
|
||||||
#nullable restore
|
#nullable restore
|
||||||
#line 73 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
#line 75 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
ToastObj = (Syncfusion.Blazor.Notifications.SfToast)__value;
|
ToastObj = (Syncfusion.Blazor.Notifications.SfToast)__value;
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
@@ -760,13 +749,13 @@ using BlazorApp.Controller;
|
|||||||
);
|
);
|
||||||
__builder.CloseComponent();
|
__builder.CloseComponent();
|
||||||
__builder.CloseElement();
|
__builder.CloseElement();
|
||||||
__builder.AddMarkupContent(140, "\r\n");
|
__builder.AddMarkupContent(137, "\r\n");
|
||||||
__builder.AddMarkupContent(141, "<style>\r\n .bootstrap4 #toast_default .e-meeting::before {\r\n content: \"\\e763\";\r\n font-size: 20px;\r\n }\r\n\r\n .e-toast-container .e-toast {\r\n background-color: lightgreen;\r\n }\r\n \r\n\r\n</style>\r\n");
|
__builder.AddMarkupContent(138, "<style>\r\n .bootstrap4 #toast_default .e-meeting::before {\r\n content: \"\\e763\";\r\n font-size: 20px;\r\n }\r\n\r\n .e-toast-container .e-toast {\r\n background-color: lightgreen;\r\n }\r\n \r\n\r\n</style>\r\n");
|
||||||
__builder.AddMarkupContent(142, "<style>\r\n\r\n div#Grid_dialogEdit_wrapper {\r\n max-height: none !important;\r\n }\r\n</style>");
|
__builder.AddMarkupContent(139, "<style>\r\n\r\n div#Grid_dialogEdit_wrapper {\r\n max-height: none !important;\r\n }\r\n</style>");
|
||||||
}
|
}
|
||||||
#pragma warning restore 1998
|
#pragma warning restore 1998
|
||||||
#nullable restore
|
#nullable restore
|
||||||
#line 100 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
#line 102 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
|
|
||||||
SfToast ToastObj;
|
SfToast ToastObj;
|
||||||
private string ToastPosition = "Right";
|
private string ToastPosition = "Right";
|
||||||
@@ -778,7 +767,7 @@ using BlazorApp.Controller;
|
|||||||
#line hidden
|
#line hidden
|
||||||
#nullable disable
|
#nullable disable
|
||||||
#nullable restore
|
#nullable restore
|
||||||
#line 108 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
#line 110 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
|
|
||||||
private DialogSettings DialogParams = new DialogSettings { Width = "450px", Height = "750px" };
|
private DialogSettings DialogParams = new DialogSettings { Width = "450px", Height = "750px" };
|
||||||
|
|
||||||
@@ -787,6 +776,7 @@ using BlazorApp.Controller;
|
|||||||
public List<BWPMModels.Lehrer> Lehrers { get; set; }
|
public List<BWPMModels.Lehrer> Lehrers { get; set; }
|
||||||
public List<BWPMModels.Lehrer> TmpLehrer { get; set; }
|
public List<BWPMModels.Lehrer> TmpLehrer { get; set; }
|
||||||
public List<BWPMModels.AspNetUsers> Users { get; set; }
|
public List<BWPMModels.AspNetUsers> Users { get; set; }
|
||||||
|
public List<BWPMModels.Schulhaus> Schulhaus { get; set; }
|
||||||
string userid = "";
|
string userid = "";
|
||||||
public static int? pkey { get; set; }
|
public static int? pkey { get; set; }
|
||||||
public bool Initial { get; set; } = true;
|
public bool Initial { get; set; } = true;
|
||||||
@@ -800,6 +790,7 @@ using BlazorApp.Controller;
|
|||||||
{
|
{
|
||||||
/// GridData = OrdersDetails.GetAllRecords();
|
/// GridData = OrdersDetails.GetAllRecords();
|
||||||
GridData = BlazorApp.Controller.LehrerController.GetAllData();
|
GridData = BlazorApp.Controller.LehrerController.GetAllData();
|
||||||
|
Schulhaus = BlazorApp.Controller.SchulhausController.GetAllData();
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override async Task OnAfterRenderAsync(bool firstRender)
|
protected override async Task OnAfterRenderAsync(bool firstRender)
|
||||||
@@ -987,6 +978,17 @@ namespace __Blazor.BlazorApp.Pages.Admin.Teacher.Teacher
|
|||||||
__builder.AddComponentReferenceCapture(__seq5, (__value) => { __arg5((global::Syncfusion.Blazor.Grids.SfGrid<TValue>)__value); });
|
__builder.AddComponentReferenceCapture(__seq5, (__value) => { __arg5((global::Syncfusion.Blazor.Grids.SfGrid<TValue>)__value); });
|
||||||
__builder.CloseComponent();
|
__builder.CloseComponent();
|
||||||
}
|
}
|
||||||
|
public static void CreateGridForeignColumn_1<TValue>(global::Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder __builder, int seq, int __seq0, global::System.String __arg0, int __seq1, global::System.String __arg1, int __seq2, global::System.String __arg2, int __seq3, global::System.String __arg3, int __seq4, global::System.Collections.Generic.IEnumerable<TValue> __arg4, int __seq5, global::System.String __arg5)
|
||||||
|
{
|
||||||
|
__builder.OpenComponent<global::Syncfusion.Blazor.Grids.GridForeignColumn<TValue>>(seq);
|
||||||
|
__builder.AddAttribute(__seq0, "Field", __arg0);
|
||||||
|
__builder.AddAttribute(__seq1, "HeaderText", __arg1);
|
||||||
|
__builder.AddAttribute(__seq2, "ForeignKeyValue", __arg2);
|
||||||
|
__builder.AddAttribute(__seq3, "ForeignKeyField", __arg3);
|
||||||
|
__builder.AddAttribute(__seq4, "ForeignDataSource", __arg4);
|
||||||
|
__builder.AddAttribute(__seq5, "Width", __arg5);
|
||||||
|
__builder.CloseComponent();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#pragma warning restore 1591
|
#pragma warning restore 1591
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -189,7 +189,7 @@ using BlazorApp.Controller;
|
|||||||
}
|
}
|
||||||
#pragma warning restore 1998
|
#pragma warning restore 1998
|
||||||
#nullable restore
|
#nullable restore
|
||||||
#line 100 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
#line 102 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
|
|
||||||
SfToast ToastObj;
|
SfToast ToastObj;
|
||||||
private string ToastPosition = "Right";
|
private string ToastPosition = "Right";
|
||||||
@@ -201,7 +201,7 @@ using BlazorApp.Controller;
|
|||||||
#line hidden
|
#line hidden
|
||||||
#nullable disable
|
#nullable disable
|
||||||
#nullable restore
|
#nullable restore
|
||||||
#line 108 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
#line 110 "E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\BlazorApp\Pages\Admin\Teacher\Teacher.razor"
|
||||||
|
|
||||||
private DialogSettings DialogParams = new DialogSettings { Width = "450px", Height = "750px" };
|
private DialogSettings DialogParams = new DialogSettings { Width = "450px", Height = "750px" };
|
||||||
|
|
||||||
@@ -210,6 +210,7 @@ using BlazorApp.Controller;
|
|||||||
public List<BWPMModels.Lehrer> Lehrers { get; set; }
|
public List<BWPMModels.Lehrer> Lehrers { get; set; }
|
||||||
public List<BWPMModels.Lehrer> TmpLehrer { get; set; }
|
public List<BWPMModels.Lehrer> TmpLehrer { get; set; }
|
||||||
public List<BWPMModels.AspNetUsers> Users { get; set; }
|
public List<BWPMModels.AspNetUsers> Users { get; set; }
|
||||||
|
public List<BWPMModels.Schulhaus> Schulhaus { get; set; }
|
||||||
string userid = "";
|
string userid = "";
|
||||||
public static int? pkey { get; set; }
|
public static int? pkey { get; set; }
|
||||||
public bool Initial { get; set; } = true;
|
public bool Initial { get; set; } = true;
|
||||||
@@ -223,6 +224,7 @@ using BlazorApp.Controller;
|
|||||||
{
|
{
|
||||||
/// GridData = OrdersDetails.GetAllRecords();
|
/// GridData = OrdersDetails.GetAllRecords();
|
||||||
GridData = BlazorApp.Controller.LehrerController.GetAllData();
|
GridData = BlazorApp.Controller.LehrerController.GetAllData();
|
||||||
|
Schulhaus = BlazorApp.Controller.SchulhausController.GetAllData();
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override async Task OnAfterRenderAsync(bool firstRender)
|
protected override async Task OnAfterRenderAsync(bool firstRender)
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user