Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions components/expansionpanel/templates.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ Do not use `SubTitle` and `SubTitleTemplate` at the same time. If the app define
>caption Using ExpansionPanel templates

````RAZOR
<TelerikExpansionPanel Expanded="@ExpansionPanelExpanded">
<TelerikExpansionPanel @bind-Expanded="@ExpansionPanelExpanded">
<TitleTemplate>
<TelerikSvgIcon Icon="@SvgIcon.Info" />
<TelerikSvgIcon Icon="@SvgIcon.InfoCircle" />
<span style="color: var(--kendo-color-primary)"><strong>Title</strong> Template</span>
</TitleTemplate>
<SubTitleTemplate>
Expand All @@ -77,7 +77,7 @@ Do not use `SubTitle` and `SubTitleTemplate` at the same time. If the app define
</TelerikExpansionPanel>

@code {
private bool ExpansionPanelExpanded { get; set; }
private bool ExpansionPanelExpanded { get; set; } = true;
}
````

Expand Down
Loading