Lib:SmartClient_SC_SNAPSHOT-2011-01-12
start selenium ide, click either true or false option, nothing will be recorded in the IDE.
but it is fine when dealing with checkBox
start selenium ide, click either true or false option, nothing will be recorded in the IDE.
Code:
isc.DynamicForm.create({ fields: [ {title:"In Stock", valueMap:{"true":"True","false":"False"},type:"radioGroup", disabled: "true"} ] });
Code:
isc.DynamicForm.create({ fields: [ {title:"In Stock", type:"checkbox", disabled:"true"} ] });
Comment