The header item is just like the other form items - you can simply specify an item with the type or editorType attribute set to "HeaderItem"
Like this:
Code:
isc.DynamicForm.create({
fields: [
{type:"HeaderItem", defaultValue:"This is a title"}
]
});
Comment