Hi. I've encountered an annoying little problem when setting the default value of a checkbox to "true".
If I create the item in JavaScript:
it works. However if I create the same item in XML:
then the checkbox needs to be clicked twice before it is cleared.
SmartClient 8.3
FF18 and IE9
If I create the item in JavaScript:
Code:
isc.DynamicForm.create({
fields: [
{title:"In Stock", type:"checkbox", defaultValue:true}
]
});
Code:
<DynamicForm width="300">
<fields>
<field title="In Stock" type="checkbox" defaultValue="true"/>
</fields>
</DynamicForm>
SmartClient 8.3
FF18 and IE9
Comment