/*** DOESN'T WORK ***/ =load( local!bool, { a!sectionLayout( firstColumnContents: { a!checkboxField( choiceLabels: {"Check me"}, choiceValues: {true}, value: local!bool, saveInto: local!bool ), a!textField(label:"Value of checkbox",value:local!bool), if( local!bool, { a!textField( label: "Text 1", value: {} ), a!textField( label: "Text 2", value: {} ) }, { a!textField( label: "Text 3", value: {} ), a!textField( label: "Text 4", value: {} ) } ) } ) } ) /*** WORKS ***/ =load( local!bool, { a!sectionLayout( label:"Works", firstColumnContents: { a!checkboxField( choiceLabels: {"Check me"}, choiceValues: {true}, value: local!bool, saveInto: local!bool ), a!textField(label:"Value of checkbox",value:local!bool), if( isnull(local!bool), { a!textField( label: "Text 1", value: {} ), a!textField( label: "Text 2", value: {} ) }, { a!textField( label: "Text 3", value: {} ), a!textField( label: "Text 4", value: {} ) } ) } ) } )