Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Boolean field not displaying as CheckBoxItem in PropertySheet

    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...

    Code:
    isc.PropertySheet.create({
    ID:"dashboardappl0formDetail",
    width:"100%",
    canEdit:false,
    internalID:"formDetail"
    ,fields:[
    {ID:"dashboardappl0DTL_INDEX",
    title:"Indexed",
    type:"boolean",
    value:false,
    formID:"formDetail"
    }]
    });
    Works as I'd expect in a DynamicForm...

    Code:
    isc.DynamicForm.create({
    ID:"dashboardappl0frmContentTags"
    ,fields:[
    {ID:"dashboardappl0DTL_INDEX",
    title:"Indexed",
    type:"boolean",
    value:false,
    }]
    });
    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
Working...
X