Jiří Kanda
Jiří Kanda
And what if title contains dots (namespace.class)? Should the title be used as a class name? I suppose it should be but is not (#1131).
@hakenr I would like to ask for review for the "effective" cascade: ``` protected ValidationMessageDisplayMode ValidationMessageDisplayModeEffective => this.ValidationMessageDisplayMode ?? this.GetSettings()?.ValidationMessageDisplayMode ?? GetDefaults().ValidationMessageDisplayMode ?? HxInputBase.Defaults?.ValidationMessageDisplayMode ?? throw new InvalidOperationException(nameof(ValidationMessageDisplayMode) + "...
I have implemented the "Blazor core", now it is your turn, the CSS squad (@crdo, @Harvey1214). There is 'HxValidationMessageTest' ready in BlazorTestApp to see all validation message modes at once.
HxInputDate modified to use HxDropdown&co instead of "plain div with dropdown classes". The main reason to this changes is that HxDropdown tracks the state and renders "show" class to the...
I tried to modify the implementation of HxInputDateRange to work internally the same way as HxInputDateRange (#307). But I found the limitation mentioned in #308. To align the HxInputDate and...
I understand the result of #308 as * "to resolve the #308 issue"_ - it is not going to happen * _"not to align the component implementations"_ - while the...
Hi diejozef, it is easy to achieve the same behavior without FocusOut method. Try the following demo, enter "20" to the text box again and again. It formats the value...
@diejozef > why is StateHasChanged not sufficient in this case Using StateHasChanged you are requesting to update the "current" component. And yes, it should update all child components but the...
@hakenr Not sure, more for no :-). In brief: The component model abstraction and the performance optimalization mention in the link (https://github.com/dotnet/aspnetcore/blob/a450cb69b5e4549f5515cdb057a68771f56cefd7/src/Components/Components/src/RenderTree/RenderTreeDiffBuilder.cs#L545) is in the UpdateRetainedChildComponent method which is used...
@hakenr I am ready to make PoC for ApplyToAsync(IQueryable dataProvider), unfortunatelly, there are no public async Linq methods (CountAsync, ToListAsync are part of Entity Framework Core). While it is quite...