45 lines
1.3 KiB
Plaintext
45 lines
1.3 KiB
Plaintext
@using MP.Core.Conf
|
|
@using MP.Core.DTO;
|
|
|
|
@if (useNewDisplay)
|
|
{
|
|
<DetailViewMSE CurrRecord="@currRecord" currTagConf="@currTagConf" currTagVal="@currTagVal" doAnimate="@doAnimate" keepAliveMin="@keepAliveMin" showArt="@showArt" doBlink="@doBlink" maxChar4Scroll="@maxChar4Scroll" @rendermode="InteractiveAuto"></DetailViewMSE>
|
|
}
|
|
else
|
|
{
|
|
<DetailMSE CurrRecord="@currRecord" currTagConf="@currTagConf" currTagVal="@currTagVal" doAnimate="@doAnimate" keepAliveMin="@keepAliveMin" showArt="@showArt" doBlink="@doBlink" maxChar4Scroll="@maxChar4Scroll" cssOverlayOff="@cssOverlayOff" @rendermode="InteractiveAuto"></DetailMSE>
|
|
}
|
|
|
|
@code {
|
|
|
|
[Parameter]
|
|
public MappaStatoExplDTO? currRecord { get; set; } = null;
|
|
|
|
[Parameter]
|
|
public List<TagData>? currTagConf { get; set; } = null;
|
|
|
|
[Parameter]
|
|
public Dictionary<string, string> currTagVal { get; set; } = new Dictionary<string, string>();
|
|
|
|
[Parameter]
|
|
public bool doAnimate { get; set; } = true;
|
|
|
|
[Parameter]
|
|
public bool doBlink { get; set; } = false;
|
|
|
|
[Parameter]
|
|
public int keepAliveMin { get; set; } = 5;
|
|
|
|
[Parameter]
|
|
public int maxChar4Scroll { get; set; } = 20;
|
|
|
|
[Parameter]
|
|
public string showArt { get; set; } = "";
|
|
[Parameter]
|
|
public bool useNewDisplay { get; set; } = true;
|
|
|
|
|
|
[Parameter]
|
|
public string cssOverlayOff { get; set; } = "";
|
|
}
|