hi..
i'm using SmartClient 7.0
i trying to create indivdual formControls
like so:
var c=CheckboxItem.create({
ID: "chkOK"
,title: "In Stock"
});
and later see if can do the same with DynamicForm.create({
fields: [
CheckboxItem.create({
ID: "chkOK"
,title: "In Stock"
})
]
})
because we have velocity templates for each control , and them merge them and re-use them for forms.
but it doesn't seem to be working out side a form.
i'm using SmartClient 7.0
i trying to create indivdual formControls
like so:
var c=CheckboxItem.create({
ID: "chkOK"
,title: "In Stock"
});
and later see if can do the same with DynamicForm.create({
fields: [
CheckboxItem.create({
ID: "chkOK"
,title: "In Stock"
})
]
})
because we have velocity templates for each control , and them merge them and re-use them for forms.
but it doesn't seem to be working out side a form.