mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-02-04 05:35:44 +00:00
47 lines
1.9 KiB
Plaintext
47 lines
1.9 KiB
Plaintext
@inherits RadzenButton
|
|
|
|
@if (Visible)
|
|
{
|
|
<button @ref="@Element" style="@Style" disabled="@IsDisabled"
|
|
type="@((Enum.GetName(typeof(ButtonType), ButtonType) ?? ButtonType.ToString()).ToLower())"
|
|
@attributes="Attributes" class="@GetCssClass()" id="@GetId()"
|
|
@onclick="@OnClick" tabindex="@(Disabled ? "-1" : $"{TabIndex}")"
|
|
aria-label="@AriaLabel">
|
|
<div class="rz-helper-hidden-accessible">
|
|
<input type="checkbox" name="@Name" id="@Name" checked="@Value" value="@(Value.ToString().ToLower())" tabindex="-1" aria-checked="@(Value.ToString().ToLowerInvariant())" @attributes=@InputAttributes>
|
|
</div>
|
|
<span class="rz-button-box">
|
|
@if (ChildContent != null)
|
|
{
|
|
@ChildContent
|
|
}
|
|
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(GetIcon()))
|
|
{
|
|
<i class="notranslate rz-button-icon-left rzi" style="@(!string.IsNullOrEmpty(IconColor) ? $"color:{IconColor}" : null)">@GetIcon()</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>
|
|
}
|
|
}
|
|
}
|
|
</span>
|
|
</button>
|
|
}
|