Announcement

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

    DynamicForm "titleSuffix" attribute ignored for required fields

    Hi, I noticed the "titleSuffix" attribute of DynamicForm seems to be ignored for mandatory fields (the ones having the "required" property setted to true).
    Is this the desiderd behavior? Till now I haven't found anything about it in the DynamicForm/FormItem docs.

    You can test it even on the published examples at http://www.smartclient.com/docs/7.0r....html#textItem

    trying the following XML code snippet

    Code:
     
    <DynamicForm width="300" titleSuffix="">
        <fields>
            <field title="RequiredItem" type="text" required="true"/>
            <field title="OptionalItem" type="text" />
        </fields>
    </DynamicForm>
    I am using
    - Firefox 3.6.8 with
    - SmartClient Version: 8.0/LGPL Development Only (built 2010-05-18)

    I've attached a screenshot.

    Thank you
    Davide
    Attached Files

    #2
    By design. Try requiredTitlePrefix/Suffix for required fields.

    Comment


      #3
      Originally posted by davidj6
      By design. Try requiredTitlePrefix/Suffix for required fields.
      You're right, sorry (me dunce).

      Thank you.
      Davide

      Comment

      Working...
      X