Is it possible to use the normal input checkbox in .NET forms, or do I need to create a custom directive or modify the existing one to make it work?
<md-checkbox ng-checked="$ctrl.checked = !$ctrl.checked">
<input type="checkbox" name="test" value="1" />
</md-checkbox>
I could add the ng-checked attribute to the input element as well, but it seems unnecessary. I would expect that simply adding a name attribute would automatically include a hidden checkbox with a truthy value and toggle the nested checkbox.