anmcgrath
anmcgrath
Thanks @kei-soft this requires a restructure of the sheet's datastore but I'll definitely consider it. I've never really thought it would be used for so many rows but it would...
Hi @coppercosmo you can set readonly in the cell format e.g: ```csharp Sheet.Range("A1").Format = new CellFormat(){IsReadOnly = true}; ```
Not at the moment, named variables can only refer to values.
Hi @TasosSarris that sounds like a reasonable thing to do. Have you managed to use this control to load/save excel files? I'd be interested in seeing an example if so....
As of #188 you can set a named range/cell in a sheet: ```csharp Sheet.NamedRanges.Set("name", "A1"); ```
Hi guys, at the moment the focus management is pretty rudimentary, there is a private variable in Datasheet.razor.cs: ```IsDataSheetActive```. When this is false, key input doesn't trigger the editor to...
I've added the capability for you to set the datasheet as active in the latest commit: ```csharp await _datasheet.SetActiveAsync(); ``` This will now you to re-focus the sheet to receive...
Hi @piramouns does the cell have a type set to DateTime? I'm a bit confused as to why this would happen. Can you share an example? The only thing is...
Hey, thanks for the example. I was able to reproduce it in your example and on my machine when setting the CultureInfo to fa-IR. The sheet is trying to figure...
Any updates on this @piramouns ? Have a look at #116 which may also help with restricting the conversion.