04-22-2008, 10:05 AM
|
#1 (permalink)
|
| Thumbs Must Hurt
Join Date: Feb 2008 Model: 8310 PIN: N/A Carrier: Informatico
Posts: 56
Post Thanks: 0 Thanked 0 Times in 0 Posts
| problem with grid Please Login to Remove! Hi,
I want to fill a grid using VerticalFieldManager
this is the a part of the code:
c1 = new VerticalFieldManager();
c2 = new VerticalFieldManager();
hfm = new HorizontalFieldManager();
while ( (event = parser.read()).getType() != Xml.END_DOCUMENT ) {
if (event.getType() == Xml.START_TAG) {
String name = event.getName();
if (name != null && name.equals("CAMPO")) {
event = parser.read();
contenido = event.getText();
if (contenido != null) {
c1.add(new LabelField(contenido));
c2.add(new LabelField("--"));
hfm.add(c1);
hfm.add(c2);
}
}
...
...
add(hfm);
But when I run the application give me an error, how can i do it?
Thanks, Oscar
Last edited by racsus : 04-22-2008 at 10:07 AM.
|
| Offline
| |