I'm trying to change input's values with jQuery. Values are changing properly, but the mark / unmark on the input box is not shown... I've tried if it is a problem with position or padding, but it is different problem and I'm kind of stacked.
Here is the code for changing input values:
$('.AlarmsTreeView-Title input').click(function () {
var isChecked = $(this).val();
if (isChecked == "false") {
$(this).attr('value', 'true').attr('checked','true');
} else {
$(this).attr('value', 'false').removeAttr('checked');
}
});