I am executing the following code:
new sap.ui.commons.form.FormElement({
label: new sap.ui.commons.Label({
text: oBundle.getText(
"UI_SERVICE_MODEL_ID"),
layoutData: new sap.ui.commons.form.GridElementData({
hCells: "5"
})
}),
fields: [new sap.ui.commons.CheckBox().bindProperty("checked", "/validation"),]
}),
but the property binding is not working. It is unchecked always.