Next Hurdle.....
Next Hurdle.....
- Subject: Next Hurdle.....
- From: Jeffrey Pearson <email@hidden>
- Date: Sun, 2 Apr 2006 14:16:26 -0700
Thanks to all of you, I have gotten quite far in my app. Thank you
again all of you.
OK. Next hurdle.
My existing jsp app pulls data from a MySQL database and populates an
ArrayList of those objects. I figured out from the WebObjects for
Windows Developers docs that I needed to change the object to
NSMutableArray. So I added the NSMutableArray to my page object. In
the page constructor, I called the method to create the Array. ie:
public class Publishers extends WOComponent {
protected NSMutableArray allPublishers;
/** @TypeInfo Publishers */
public Publishers(WOContext context) {
super(context);
PublisherFunctions pf = new com.metrohero.web.PublisherFunctions();
allPublishers = pf.getAllPublishers();
}
}
I see the allPublishers in WOBuilder. I can even bind a string to
allPublishers.count. Now how to I get to the last part of binding a
table to the array of objects?
Any help is greatly appreciated again.
Jeff Pearson
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden