Impiego campi date-time con blazorise
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
@using SHERPA.BBM.UI.Data
|
||||
@using Blazorise
|
||||
@using SHERPA.BBM.UI.Data
|
||||
@using SHERPA.BBM.UI.Components;
|
||||
@using DatabaseModels
|
||||
@inject BBM_EFService BBMService
|
||||
@@ -10,7 +11,7 @@
|
||||
<div class="card-body small">
|
||||
<EditForm Model="@_basket">
|
||||
<DataAnnotationsValidator />
|
||||
<ValidationSummary />
|
||||
<Blazorise.ValidationSummary />
|
||||
<div class="row">
|
||||
<div class="col-12 col-lg-6">
|
||||
<div class="form-group">
|
||||
@@ -20,7 +21,7 @@
|
||||
</div>
|
||||
<div class="col-6 col-lg-3">
|
||||
<label for="dataIns">Inserita:</label>
|
||||
<InputDate id="dataIns" @bind-Value="_basket.DataIns" class="form-control form-control-sm" />
|
||||
<DateEdit InputMode="DateInputMode.DateTime" @bind-Date="@_basket.DataIns" Class="form-control form-control-sm" />
|
||||
</div>
|
||||
<div class="col-6 col-lg-3">
|
||||
<label for="dataIns">Cliente:</label>
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
@using SHERPA.BBM.UI.Data
|
||||
@using SHERPA.BBM.UI.Components;
|
||||
@using DatabaseModels
|
||||
@using Blazorise
|
||||
|
||||
@inject BBM_EFService BBMService
|
||||
@inject BBM_SelectData SelectData
|
||||
|
||||
@@ -11,7 +13,7 @@
|
||||
<div class="card-body small">
|
||||
<EditForm Model="@_currItem">
|
||||
<DataAnnotationsValidator />
|
||||
<ValidationSummary />
|
||||
<Microsoft.AspNetCore.Components.Forms.ValidationSummary />
|
||||
<div class="row">
|
||||
<div class="col-6 col-lg-3">
|
||||
<div class="form-group">
|
||||
@@ -58,7 +60,7 @@
|
||||
</div>
|
||||
<div class="col-6 col-lg-3">
|
||||
<label for="dataIns">Inserita:</label>
|
||||
<InputDate id="dataIns" @bind-Value="_currItem.DataIns" class="form-control form-control-sm" />
|
||||
<DateEdit InputMode="DateInputMode.DateTime" @bind-Date="@_currItem.DataIns" Class="form-control form-control-sm" />
|
||||
</div>
|
||||
<div class="col-6 col-lg-3">
|
||||
<label for="dataIns">NumDoc:</label>
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
@using SHERPA.BBM.UI.Data
|
||||
@using Blazorise
|
||||
@using SHERPA.BBM.UI.Data
|
||||
@using SHERPA.BBM.UI.Components;
|
||||
@using DatabaseModels
|
||||
@inject BBM_EFService BBMService
|
||||
@@ -10,7 +11,7 @@
|
||||
<div class="card-body small">
|
||||
<EditForm Model="@_negotiation">
|
||||
<DataAnnotationsValidator />
|
||||
<ValidationSummary />
|
||||
<Blazorise.ValidationSummary />
|
||||
<div class="row">
|
||||
<div class="col-12 col-lg-6">
|
||||
<div class="form-group">
|
||||
@@ -20,7 +21,7 @@
|
||||
</div>
|
||||
<div class="col-6 col-lg-3">
|
||||
<label for="dataIns">Inserita:</label>
|
||||
<InputDate id="dataIns" @bind-Value="_negotiation.DataIns" class="form-control form-control-sm" />
|
||||
<DateEdit InputMode="DateInputMode.DateTime" @bind-Date="@_negotiation.DataIns" Class="form-control form-control-sm" />
|
||||
</div>
|
||||
<div class="col-6 col-lg-3">
|
||||
<label for="dataIns">Path:</label>
|
||||
|
||||
Reference in New Issue
Block a user