Announcement

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

    TextArea without Title?

    Hello,

    i want to create a TextArea without a Title in it.

    In this Code

    Code:
    isc.DynamicForm.create({
        width: 300,
        fields: [
            {title:"ThisTitleIdontWantToSee", type:"textArea"} 
        ]
    });
    you can find a simple TextArea. Some of you may think: "Oh, thats easy. Just remove the title-attribute like this:

    Code:
    isc.DynamicForm.create({
        width: 300,
        fields: [
            {type:"textArea"} 
        ]
    });
    But then you will find out, that a ":" is still present. Is it possible to create a TextArea without any kind of Title?

    thx alot.

    #2
    did you try to set showTitle: false for your textArea?

    Comment


      #3
      you are genius ;)

      Comment

      Working...
      X