mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-07-08 18:16:08 +00:00
137 document-layer files now use namespace Radzen.Documents.Spreadsheet. 26 UI-layer files keep Radzen.Blazor.Spreadsheet with using added. Test files add using Radzen.Documents.Spreadsheet. Sheet class renamed to Worksheet to match industry conventions.
17 lines
483 B
Plaintext
17 lines
483 B
Plaintext
@using Radzen.Blazor.Spreadsheet
|
|
@using Radzen.Documents.Spreadsheet
|
|
|
|
@if (visible && (!string.IsNullOrEmpty(title) || !string.IsNullOrEmpty(message)))
|
|
{
|
|
<div class=@className style=@style>
|
|
@if (!string.IsNullOrEmpty(title))
|
|
{
|
|
<div class="rz-spreadsheet-input-prompt-title">@title</div>
|
|
}
|
|
@if (!string.IsNullOrEmpty(message))
|
|
{
|
|
<div class="rz-spreadsheet-input-prompt-message">@message</div>
|
|
}
|
|
</div>
|
|
}
|