Announcement

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

    Using headerItem

    I am trying to use HeaderItem inside of my form. Is it allowed? Can you show an example in JS, please?
    Last edited by markgoldin; 11 May 2007, 06:54. Reason: Solved

    #2
    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

    Working...
    X