Non Object Error

hi, i am new to yii framework and i got the following error when i running my web page. can anybody help me to correct this error.

the error is…

Call to a member function isAttributeRequired() on a non-object in C:\wamp\www\yii-1.1.13.e9e4a0\framework\web\helpers\CHtml.php on line 1237…

even $model has value in controller. i has assigned value to it… then why this error is occuring…??? please help…

Call to a member function isAttributeRequired() on a non-object in C:\wamp\www\yii-1.1.13.e9e4a0\framework\web\helpers\CHtml.php on line 1237

please help to correct such error… $model in controller has value that i has been confirmed…

put your rules() method for this model.

Post your controller and model code, please.

and are you sure $model is properly fetched from database/created with ‘new’? maybe you are accessing record ID that does not exist in database and try to display form for such null object without checking if it was successfully fetched…

[color="#006400"] /* moved from Misc */[/color]

[color="#006400"]NOTE: merged duplicate posts[/color]

Please do not make double posts it’s not needed.

You should pass $model from controller to view like this:


$this->render('someform', array(

    'model'=>$model,

));