I use UlkitCss and I have excerpts from a form with input radio fields as below.
When printing (Ctrl + p or window.print () or $ windows.print) the field is not checked. The selected radio simply does not appear. How do I get the field checked in?
I have a code:
<form>
<div class="uk-margin padding">
<div class="uk-form-controls">
<label><input class="uk-radio" type="radio" name="item4">item 1.</label><br>
<label><input class="uk-radio" type="radio" name="item4"> item 2</label><br>
<label><input class="uk-radio" type="radio" name="item4" checked="checked" ng-checked="true">item 3</label><br>
<label><input class="uk-radio" type="radio" name="item4">item 4 </label>
</div>
</div>
</form>