As of a few release versions ago, SfSlitter is no longer respecting if [Collapsed] is initialised to true. The splitter pane now opens as NOT collapsed even if the SplitterPane is set to Collapsed=true in the declaration.
The same is true in these 3 cases:
- <SplitterPane Collapsible=true Collapsed=true>
- <SplitterPane Collapsible=true Collapsed=@DetailCollapsed> (where DetailCollapsed=true)
- <SplitterPane Collapsible=true @bind-Collapsed=@DetailCollapsed>
However, if DetailCollapsed is set to false in declaration, then set to true in the component OnInitialized() event, the control does then respond correctly.
The bug is that it is not accepting the value on declaration. It didn't used to fail this way, but started doing so a month or two ago.
Please advise.