Announcement

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

    How to create dynamicform without group title

    I am trying to create a Dynamic form as a group, but without a group title. The problem is when I do that, the border on the top left corner has a gap/extra space and I can't seem to remove that gap.

    I have tried to remove some of the properties but I am not able to remove that.

    Could you please help how to remove that extra gap?

    I have attached the screen shot.
    Attached Files
    Last edited by test; 22 Mar 2011, 18:42.

    #2
    hi

    are you directly drawing the dynamicform to rootpanel ??
    if u r adding to another canvas and if u draw that canvas,there will be no border

    else
    put setShowEdges(false);

    Comment


      #3
      I am just creating a simple dynamicform as a group but without grouptitle. But I do want the border.
      --
      final DynamicForm form = new DynamicForm();
      form.setIsGroup(true);
      form.setShowEdges(false);
      ---

      How can I have a clean border without that gap near the top left corder?
      Please Help.

      Comment


        #4
        hi

        there is method in dynamic form
        setBorder(String)

        apply that avoid setIsgroup(true)

        eg:setBorder("1px solid black");

        do this

        Comment

        Working...
        X