Announcement

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

    Textbox with out a title.. problem with colon :

    I want to have a textbox or any form element with out any title. But a colon is appearing in the front. How to avoid this?
    :[Hello]
    My code is:
    isc.DynamicForm.create
    ({
    top: 10,
    left: 20,
    fields:
    [
    {
    type: "text",
    defaultValue: "Hello"
    }
    ]
    });

    #2
    That colon is the default DynamicForm.titleSuffix. However what you probably want to do to get rid of it is set showTitle:false on any item where you don't want to show a title.

    Comment


      #3
      Thanks a lot.. it worked...

      Comment

      Working...
      X