I'm seeing this common pattern in some libraries (MatBlazor, Telerik) of having ValueChanged and ValueExpression properties and it really confuses me.
What is the difference between both? And when to use it?
I'm using Grid.Blazor library to render server side grid on Blazor app. One of the column has a button with click event. So when button is clicked then grid row event is also fired along with button click event. I want to stop event propagation and…
I'm working on a new project that will have some in depth policies for what user can and can't access/see, with Identity Server 4.
I'm trying to use AuthorizeView with policies to hide options in my navigation, but the views are cascading, meaning…
I just want to load a razor component into another razor component when user click search button then I want to show search razor component (page) into a hidden div when the user click hide button then it will be hidden. like inline popup.
I have implemented the following code in wwwroot - index.html:
"use strict";
(() => {
const modified_inputs = new Set;
const defaultValue = "defaultValue";
// store default values
addEventListener("beforeinput", (evt) => {
const target =…
Is it possible to use Blazor Material without using/referencing the Bootstrap Library ?
I have removed the links to the bootstrap .css files in the Blazor web assembly template and it appears that obviously the bootstrap styles aren't working…
Using MatBlazor (1.5.4) MatDialog, I'm interested in having the dialog size fixed or set to a percentage of the total page. Currently, the behaviour is that the dialog opens with its size fitting the content.
I tried adding explicit styling in…
Of the packages that bring Material Design to Blazor ASP.Net Core apps, there are two that seem very similar, namely MatBlazor and Material.Blazor. Even the respective documentation pages (e.g. MatBlazor button and Material.Blazor button) are very…
I have used the MatBlazor framework for my project.
In MatSelect, I want to catch its value onchange event to do some other works.
I have tried some solutions but the onchange event has not fired yet.
I have a server side Blazor application. There are two options when it comes to writing a razor page under Blazor: Design code and C# code in one ".razor" file and separated design and code files as ".razor" and ".razor.cs" files. The problem is…
How can I make my Blazor application to receive the encrypted parameters that contain the encoded special characters such as "/" and "+".
My screenshot can be found here
How should I configure the Blazor parameters, so that they are split and…
I am trying to obtain the dragged element in order to modify it while is dragged.
More specifically, I have a list in the following format:
List<(int, string)> list_item = new List<(int, string)> { (0, "item 1"), (1, "item 2"), (2, "item 3"), (3,…
Error:
The child content element 'MatTableRow' of component 'MatTable' uses
the same parameter name ('context') as enclosing child content element
'Authorized' of component 'AuthorizeView'.
Code:
…