Category Menu

3 posts by 2 authors in: Forums > CMS Builder
Last Post: May 10, 2010   (RSS)

Re: [dsternalski] Category Menu

By Jason - May 10, 2010

Hi,

I think the problem here is that you're using getRecords() for $allInternationalRecords instead of getCategories:

Try replacing this:
list($allInternationalRecords, $internationalMetaData) = getRecords(array(
'tableName' => 'international',
));


with this:
list($allInternationalRecords, $internationalMetaData) = getCategories(array(
'tableName' => 'international',
));


Hope this helps.
---------------------------------------------------
Jason Sauchuk - Project Manager
interactivetools.com

Hire me! Save time by getting our experts to help with your project.
http://www.interactivetools.com/consulting/

Re: [Jason] Category Menu

By dsternalski - May 10, 2010

Hi,

This worked, thanks.