I could not find the function getContentColumns() to study its object properties and methods, nor could I find it documented on the Akelos site. Any pointers how to use it properly?
->getContentColumns() is defined in AkActiveRecord.php which is the more prominent base-class of your models BTW
CommentAuthoryixiazi
I discovered the following:
<?php // $content_columns = array_keys($Product->getContentColumns()); // I commented out the above line. ?> <?php $content_columns = array('itemMasterID','itemDescription'); // I replaced it with a specific reference ?>
Now only the columns that I want to show in the product listing page show up.
Awesome.
CommentAuthorKaste
:-)
CommentAuthoryixiazi
Thank you Kaste for the link. That is definitely helpful. It looks liks a similar effect was accomplished by using the unset() to remove unneeded columns.