Announcement

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

    Remove colon for mandatory formitems

    Be sure your post includes:
    GWT-2.5.1 version
    Firefoxv3.6

    I tried to remove colon from all the formitems.
    Using
    setTitleSuffix("");
    I can remove only the coln for non mandatory items.colon is not removing for mandatory items.

    Sample code:
    final DynamicForm form = new DynamicForm();
    form.setWidth(1300);
    form.setMargin(25);
    form.setNumCols(4);
    form.setAutoFocus(false);
    form.setStyleName("Form");
    form.setHiliteRequiredFields(true);
    form.setTitleSuffix("");

    I have attached the screenshot for reference.
    Attached Files

    #2
    use setRequiredTitleSuffix("").

    Comment

    Working...
    X