Checkbox - working example -- NumberInput,TextInput - InputAttributes initialization moved to InputBase class
parent
cac80598f0
commit
e83e46abc0
@ -0,0 +1,13 @@
|
|||||||
|
@using Connected.Models;
|
||||||
|
|
||||||
|
@inherits InputBase;
|
||||||
|
|
||||||
|
<div class="checkbox-group">
|
||||||
|
@if (Checked)
|
||||||
|
{
|
||||||
|
<input id="@Id" name="checkbox" type="checkbox" @onchange="OnChange" @attributes=@InputAttributes checked>
|
||||||
|
} else {
|
||||||
|
<input id="@Id" name="checkbox" type="checkbox" @onchange="OnChange" @attributes=@InputAttributes>
|
||||||
|
}
|
||||||
|
<label for="@Id" class="checkbox-label">@Label</label>
|
||||||
|
</div>
|
@ -0,0 +1,9 @@
|
|||||||
|
@using Connected.Models;
|
||||||
|
|
||||||
|
@inherits InputBase;
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<div class="container">
|
||||||
|
@ChildContent
|
||||||
|
</div>
|
||||||
|
</div>
|
Loading…
Reference in new issue