Hi - I'm trying to get a field to display as a checkbox in a PropertySheet but it displays as text. This code shows the problem...
	Works as I'd expect in a DynamicForm...
	Thanks in anticipation,
Dan
SmartClient Version: SC_SNAPSHOT-2011-05-27/LGPL Deployment (built 2011-05-27)
Google Chrome 21.0.1180.15 beta-m
					Code:
	
	isc.PropertySheet.create({
ID:"dashboardappl0formDetail",
width:"100%",
canEdit:false,
internalID:"formDetail"
,fields:[
{ID:"dashboardappl0DTL_INDEX",
title:"Indexed",
type:"boolean",
value:false,
formID:"formDetail"
}]
});
Code:
	
	
isc.DynamicForm.create({
ID:"dashboardappl0frmContentTags"
,fields:[
{ID:"dashboardappl0DTL_INDEX",
title:"Indexed",
type:"boolean",
value:false,
}]
});
Dan
SmartClient Version: SC_SNAPSHOT-2011-05-27/LGPL Deployment (built 2011-05-27)
Google Chrome 21.0.1180.15 beta-m