Set disabled property to true.
<input class="easyui-checkbox" disabled="true" name="fruit" value="Apple" label="Apple:">
or try this to make it readonly but not disabled..
<input class="easyui-checkbox" name="fruit" value="Apple" label="Apple:"
data-options="
onChange:function(checked){
$(this).checkbox({checked: !checked});
}
">