File tree Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk.Razor" >
22
33 <PropertyGroup >
4- <Version >9.5.0-beta07 </Version >
4+ <Version >9.5.0-beta08 </Version >
55 </PropertyGroup >
66
77 <ItemGroup >
Original file line number Diff line number Diff line change 77{
88 <BootstrapLabel required =" @Required" for =" @Id" ShowLabelTooltip =" ShowLabelTooltip" Value =" @DisplayText" />
99}
10- <div @attributes =" @AdditionalAttributes" tabindex =" @TabIndexString" id =" @Id" class =" @ClassString" data-bb-dropdown =" .picker-panel" data-bb-dismiss = " .picker-panel-link-btn " >
10+ <div @attributes =" @AdditionalAttributes" tabindex =" @TabIndexString" id =" @Id" class =" @ClassString" data-bb-dropdown =" .picker-panel" >
1111 <input readonly =" @ReadonlyString" class =" @InputClassName" @bind =" @CurrentValueAsString" placeholder =" @PlaceholderString" disabled =" @Disabled" data-bs-toggle =" @Constants.DropdownToggleString" data-bs-placement =" @PlacementString" data-bs-custom-class =" @CustomClassString" @onblur =" OnBlur" />
1212 @if (ShowIcon )
1313 {
Original file line number Diff line number Diff line change 66{
77 <BootstrapLabel required =" @Required" ShowLabelTooltip =" ShowLabelTooltip" Value =" @DisplayText" />
88}
9- <div @attributes =" @AdditionalAttributes" id =" @Id" tabindex =" 0" class =" @ClassString" data-bb-dropdown =" .datetime-range-body" data-bb-dismiss = " .picker-panel-link-btn " >
9+ <div @attributes =" @AdditionalAttributes" id =" @Id" tabindex =" 0" class =" @ClassString" data-bb-dropdown =" .datetime-range-body" >
1010 <div class =" dropdown-toggle datetime-range-control" data-bs-toggle =" @Constants.DropdownToggleString" data-bs-placement =" @PlacementString" data-bs-custom-class =" @CustomClassString" >
1111 <div class =" position-relative" >
1212 <i class =" @DateTimePickerIconClassString" ></i >
3737 {
3838 <DatePickerBody Value =" @StartValue" ValueChanged =" UpdateValue" OnDateChanged =" OnStartDateChanged"
3939 DateFormat =" @DateFormat" TimeFormat =" @TimeFormat" ViewMode =" ViewMode"
40- ShowLunar =" ShowLunar" ShowSolarTerm =" ShowSolarTerm" ShowFestivals =" ShowFestivals" ShowHolidays =" ShowHolidays"
40+ ShowLunar =" ShowLunar" ShowSolarTerm =" ShowSolarTerm"
41+ ShowFestivals =" ShowFestivals" ShowHolidays =" ShowHolidays"
4142 ShowRightButtons =" false" MaxValue =" MaxValue" MinValue =" MinValue" >
4243 </DatePickerBody >
4344 }
4445 <DatePickerBody Value =" @EndValue" ValueChanged =" UpdateValue" OnDateChanged =" OnEndDateChanged"
4546 DateFormat =" @DateFormat" TimeFormat =" @TimeFormat" ViewMode =" ViewMode"
46- ShowLunar =" ShowLunar" ShowSolarTerm =" ShowSolarTerm" ShowFestivals =" ShowFestivals" ShowHolidays =" ShowHolidays"
47+ ShowLunar =" ShowLunar" ShowSolarTerm =" ShowSolarTerm"
48+ ShowFestivals =" ShowFestivals" ShowHolidays =" ShowHolidays"
4749 ShowLeftButtons =" @_showLeftButtons" MaxValue =" MaxValue" MinValue =" MinValue" >
4850 </DatePickerBody >
4951 </CascadingValue >
Original file line number Diff line number Diff line change @@ -375,6 +375,7 @@ private async Task ClickClearButton()
375375 {
376376 EditContext . NotifyFieldChanged ( FieldIdentifier . Value ) ;
377377 }
378+ await InvokeVoidAsync ( "hide" , Id ) ;
378379 }
379380
380381 private Task OnStartDateChanged ( DateTime value )
@@ -442,6 +443,7 @@ private async Task ClickConfirmButton()
442443 {
443444 EditContext . NotifyFieldChanged ( FieldIdentifier . Value ) ;
444445 }
446+ await InvokeVoidAsync ( "hide" , Id ) ;
445447 }
446448
447449 /// <summary>
You can’t perform that action at this time.
0 commit comments