-
I cannot find the method to set either frozen rows or columns (same as Freeze Panes in Excel). I saw the demo can set row#1 and row#100, and column#A. In the demo source code, it seems the index.razor's code is different from the demo page. After I run the BlazorDatasheet.Server, the demo doesn't show the fixed rows or columns, except the row and column headers. Can anyone advise? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Sorry. I am not sure how to delete this Q&A. I already found the method to freeze rows and columns. You need to call the method in DataSheet object.
|
Beta Was this translation helpful? Give feedback.
-
I use the following code in the razor webpage and do not use any @code.
|
Beta Was this translation helpful? Give feedback.
Sorry. I am not sure how to delete this Q&A. I already found the method to freeze rows and columns.
You need to call the method in DataSheet object.
<Datasheet @ref="datasheet"/>
@code { datasheet.FrozenTopCount = 3; datasheet.FrozenLeftCount = 2; datasheet.FrozenBottomCount = 1; datasheet.FrozenRightCount = 1; }