mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-07-08 18:16:08 +00:00
59 lines
2.5 KiB
Plaintext
59 lines
2.5 KiB
Plaintext
@using Microsoft.JSInterop
|
|
|
|
@inherits RadzenComponentWithChildren
|
|
@if (Visible)
|
|
{
|
|
<div @ref="@Element" style="@Style" @attributes="Attributes" class="@GetCssClass()" id="@GetId()"
|
|
tabindex="@(Disabled ? -1 : TabIndex)" @onkeydown="@OnKeyPress" @onkeydown:preventDefault=preventKeyPress @onkeydown:stopPropagation="stopKeydownPropagation">
|
|
<button aria-label="@(ButtonAriaLabel ?? Text)" tabindex="-1" disabled="@IsDisabled" class=@ButtonClass type="@((Enum.GetName(typeof(ButtonType), ButtonType) ?? ButtonType.ToString()).ToLower())" @onclick="@OnClick">
|
|
<span class="rz-button-box">
|
|
@if (ButtonContent != null)
|
|
{
|
|
@ButtonContent
|
|
}
|
|
else
|
|
{
|
|
@if (IsBusy)
|
|
{
|
|
<RadzenIcon Icon="refresh" Style="animation: rotation 700ms linear infinite" />
|
|
@if (!string.IsNullOrEmpty(BusyText))
|
|
{
|
|
<span class="rz-button-text">@BusyText</span>
|
|
}
|
|
}
|
|
else
|
|
{
|
|
@if (!string.IsNullOrEmpty(@Icon))
|
|
{
|
|
<i class="notranslate rz-button-icon-left rzi" style="@(!string.IsNullOrEmpty(IconColor) ? $"color:{IconColor}" : null)">@Icon</i>
|
|
}
|
|
@if (!string.IsNullOrEmpty(Image))
|
|
{
|
|
<img class="notranslate rz-button-icon-left rzi" src="@Image" alt=@ImageAlternateText />
|
|
}
|
|
@if (!string.IsNullOrEmpty(Text))
|
|
{
|
|
<span class="rz-button-text">@Text</span>
|
|
}
|
|
else
|
|
{
|
|
<span class="rz-button-text"> </span>
|
|
}
|
|
}
|
|
}
|
|
</span>
|
|
</button>
|
|
<button tabindex="-1" disabled="@IsDisabled" class=@PopupButtonClass type="button"
|
|
aria-label="@OpenAriaLabel" aria-haspopup="menu" aria-controls="@PopupID" aria-expanded="false">
|
|
<RadzenIcon Icon="@DropDownIcon" />
|
|
</button>
|
|
<div id="@PopupID" class="@PopupMenuClass">
|
|
<ul class="rz-menu-list" role="menu" aria-label="@OpenAriaLabel">
|
|
<CascadingValue Value=this>
|
|
@ChildContent
|
|
</CascadingValue>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
}
|