For the life of me I cant set my CheckBox to checked at page load. I have tried adding value=\"true\" and Checked=\"checked\" after id and still noth
value=\"true\"
Checked=\"checked\"
I tried all above solutions and nothing worked. It did give me some terminology to continue my research. What I ended up doing was going to the bottom of the code and added $('#inline').prop('checked', true); This solved my problem.
$('#inline').prop('checked', true);