anmcgrath
anmcgrath
Hi @raghina Can you please check that you have done the following: In Program.cs ensure you have `builder.Services.AddBlazorDatasheet();` In App.razor add `` In your home page, add interactive server render...
Hi @raghina the cell change event is on the Sheet that's associated with the datasheet, so you can check which cell(s) changes with ` Sheet.Cells.CellsChanged += (sender, args) => {...
Hey @ADefWebserver, happy that you're looking into this and what you're doing looks good. I do want to add sorting at some stage. Ideally by default it would sort a...
I think that exposing a ColumnHeaderMouseDown event is a good start. What may help you (and others) that want to do custom sorting is to allow templating of the column/row...
No problem, I'll hopefully start on it in the next couple of weeks. It doesn't help that I haven't got any real documentation on how to use certain features -...
I've added a default implementation for range sorting. Please have a look in the new example and see what you think. I've added a BeforeRangeSort event to the sheet where...
I've added ability to add a custom heading template, which you can set with the template on the datasheet. I've also added a context menu & column menu with some...
@ADefWebserver that is amazing, nice work!
You can get the sort order from the sort options. Sort options is a list of columns to sort by (you can sort by a column, then by another if...
Yeah you are right it wasn't working as intended. This PR #74 should have fixed it.