I bought the 'Get Shit Done' UI kit for my latest MVC 5 project, but i can't get the checkbox to work. I am trying to use it for the "Remember me" checkbox on the standard MVC 5 login page.
<label class="checkbox checkbox-blue" for="RememberMe">
<input type="checkbox" value="" id="RememberMe" name="RememberMe" data-toggle="checkbox" checked>
Remember me
</label>
It doesn't work though. MVC can't parse the value to anything meaningful.
EDIT: To elaborate a bit. Using the standard Html.CheckboxFor syntax doesn't generate a checkbox the way the UI kit i am using expects. The UI kit needs the checkbox to be in the format specified above, since there is some javascript-code that needs to work on it.
Is there perhaps a way to get the mvc html-helpers to generate a bound checkbox in that custom format?