I have the next checkbox:
<input type="checkbox" value="true" name="permanentEmployee" checked="" id="permanentEmployee" disabled="">
I've set the attribute disabled to true and submitted the form
$("#permanentEmployee").prop('disabled', true);`
On server side, if I do:
request.getParameter("permanentEmployee")
I get the value as Null, though I get the the correct value (i.e True) if I don't disable the checkbox. Why am I not getting the disabled checkbox value as True even if it is checked?