parent
52fb18ddf1
commit
587d6c5109
@ -0,0 +1,8 @@
|
|||||||
|
@using Connected.Models;
|
||||||
|
|
||||||
|
@inherits InputBase;
|
||||||
|
|
||||||
|
<div class="radio-group">
|
||||||
|
<input id="@Id" name="@ParentRadioGroup.Name" type="radio" @onchange="OnChange" @attributes=@InputAttributes>
|
||||||
|
<label for="@Id" class="radio-label">@Label</label>
|
||||||
|
</div>
|
@ -0,0 +1,15 @@
|
|||||||
|
@using Connected.Models;
|
||||||
|
|
||||||
|
@inherits InputBase;
|
||||||
|
|
||||||
|
<CascadingValue Value="this">
|
||||||
|
<div>
|
||||||
|
@if (!string.IsNullOrEmpty(Name))
|
||||||
|
{
|
||||||
|
<h5>@Name</h5>
|
||||||
|
}
|
||||||
|
<div class="container">
|
||||||
|
@ChildContent
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</CascadingValue>
|
Loading…
Reference in new issue