Announcement

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

    Aligning the Labels in a Formitem

    By default the Formitem field data is aligned on the entry fields. How can i align the labels for the fields to left?

    #2
    This should work

    Code:
    TextItem itmName=new TextItem("name");
    itmName.setTitleAlign(Alignment.LEFT);

    Comment

    Working...
    X