I am trying to create a dynamicform as a group but without group title. And when I do that, the default border is created without group title as expected. However, there is a little hold on the upper left hand near the corner, I think this is where the title would be, if specified. And I can not find a way to remove that gap. I have tried all the possible combination of the below. Please see the attached screen capture for reference.
Here is what I had tried..combination of all these.
--
final String nullString = "";
final DynamicForm form = new DynamicForm() {{
setAttribute("groupTitle", nullString , false);
setAttribute("titleSuffix", nullString, false);
setAttribute("titlePrefix", nullString, false);
setAttribute("titleWidth", 0, false);
//setAttribute("numCols", 1, false);
setAttribute("requiredTitlePrefix", nullString, false);
setAttribute("requiredTitleSuffix", nullString, false);
//setAttribute("groupLabelPadding", "", false);
setAttribute("showEdges", 0, true);
//setAttribute("extraSpace", 0, false);
}};
form.setExtraSpace(0);
form.setIsGroup(true);
form.setShowEdges(false);
form.setGroupTitle(nullString);
//form.setBorder("1px solid gray");
-------
And none of them worked.
If you could please take a look at the attached screen capture or try to create a simple group without group title, you will see what I mean.
I really need to figure this out, so please please help!~
Here is what I had tried..combination of all these.
--
final String nullString = "";
final DynamicForm form = new DynamicForm() {{
setAttribute("groupTitle", nullString , false);
setAttribute("titleSuffix", nullString, false);
setAttribute("titlePrefix", nullString, false);
setAttribute("titleWidth", 0, false);
//setAttribute("numCols", 1, false);
setAttribute("requiredTitlePrefix", nullString, false);
setAttribute("requiredTitleSuffix", nullString, false);
//setAttribute("groupLabelPadding", "", false);
setAttribute("showEdges", 0, true);
//setAttribute("extraSpace", 0, false);
}};
form.setExtraSpace(0);
form.setIsGroup(true);
form.setShowEdges(false);
form.setGroupTitle(nullString);
//form.setBorder("1px solid gray");
-------
And none of them worked.
If you could please take a look at the attached screen capture or try to create a simple group without group title, you will see what I mean.
I really need to figure this out, so please please help!~
Comment