for example mean nay category ke modle mean aik functin banay hea like
public function getCategoryList()
{
$c= new CDbCriteria;
$c->select = 'catId, catName';
$c->from = 'af_categories';
$c->order = 'catName ASC';
$category = Categories::model()->findAllByPk($c);
return $category;
}and isko mean call karta hon
property ke model pay
<div class="row"> <?php echo $form->labelEx($model,'fkcategroyid'); ?> <?php echo $form->dropDownList($model,'fkcategroyid', $model->categories->getStateList()); ?> <?php echo $form->error($model,'fkcategroyid'); ?> </div>
to fatal error show karta how how can i solve it
thanks in advance

Help













