hi..
i have a problem placing 2 items in one line. my midlet is using midp 2.0 (6230).
it needs a checkbox (with label) and a datefield beneath it. should look this way:
o label datefield
o label datefield
o represents the checkbox. i use one choicegroup per line (--> each has only one option).
i already did a lot of research and tried many things, but i'm still not able to do it. it works in the standard wtk-emulator, but does not in both the 6230 emulator and phone.
i currently arrange them this way:
...
arrChoices[i].setLayout(Item.LAYOUT_2);
screen.append(arrChoices[i]);
arrDateFields[i].setLayout(Item.LAYOUT_2);
screen.append(arrDateFields[i]);
...
how do i manage to get the components laid out as i wish? if there is no solution i can stop my project :-(
thanks in advance, mirco

Reply With Quote


