Blazor.FlexGrid
Blazor.FlexGrid copied to clipboard
GridView component for Blazor
Is it possible to set the row property depending on the value of one of the cell of my data row? For example: If (Cell.Value==0) // Set row.BackGrondColor=green else //...
Hi, please see the attached solution for an example of an issue we're having with the filtering. If you assign a filter on the main page, let's say column 1...
Hi, something I noticed as well that is affecting our grids, when you have a column that contains a null value in any of its data, filtering on that column...
Hi, have you ever tried binding the grid to a list of expando objects? Seems it throws an error, not sure if it's an issue using reflection getting properties of...
Hello @Mewriick , I'd like to display different things based on a column data (status), i tried to put a IF directly inside the HasCompositeValueFormatter but it does not work,...
neither AddFlexGrid or AddFlexGridServerSide dotnet version 3.1.201
Hello @Mewriick I'd like to edit lines in a new page or in a popup/modal, like in the creation of a new line is it possible ? or at least...
The sample code in readme is probably created for some old sample project version. the correct current version is: @inject Data.WeatherForecastService ForecastService @page "/grid" Weather forecast @code{ CollectionTableDataAdapter dataAdapter; protected...
There was a recent video on how to get npm and webpack to create the contents of wwwroot instead of having to use direct css and javascript. Would it be...
Is it possible to set the CSS class of the row depending on the value of one of the properties of my data row? For example: If (row.IsValid) // Set...