07-10-2008, 06:14 PM
|
#1 (permalink)
|
| New Member
Join Date: Mar 2008 Model: 8800 PIN: N/A Carrier: att
Posts: 5
Post Thanks: 0 Thanked 0 Times in 0 Posts
| ObjectChoiceField alignment problem in JDE 4.5.0 Please Login to Remove! Hi all,
I have the below code which output an ObjectChoiceField which is align to the right. It is working fine in JDE 4.2.1 and 4.3.0. However, when I try it on 4.5.0, it doesn't align correctly. The ObjectChoiceField will still align to the left, does anyone know what the problem is?
TIA!
public class TestScreen extends MainScreen
{
public TestScreen()
{
super();
FlowFieldManager bottomFM = new FlowFieldManager(USE_ALL_WIDTH);
String projectChoices[] = {"11th Street Painting", "12th Street Office", "1st Ave Restaurant"};
ObjectChoiceField projectDDF = new ObjectChoiceField("Project: ", projectChoices, 0, Field.FIELD_RIGHT | Field.USE_ALL_WIDTH | EDITABLE);
bottomFM.add(projectDDF);
this.add(bottomFM);
}
} |
| Offline
| |