Yatin Mistry
Yatin Mistry

Reputation: 1264

yii framework in Update form display related model list (admin)

yii framework in Update form display related model list (admin)

I have achieved the same. But Update and View links are current model name

I have four tables Event - has many task - has many agreement - has many attendants - has many tags - has many documents

Agreements, Attendants(Person of Company),Tags,Documents - All Associated with event_id

   **This Current Link** : http://localhost/event_tracking/trunk/**event**/update/1
   **Required Link :** http://localhost/event_tracking/trunk/**task**/update/1

enter image description here

Upvotes: 0

Views: 354

Answers (1)

Yatin Mistry
Yatin Mistry

Reputation: 1264

User renderPartial function in related model view.

echo $this->renderPartial('application.views.person.admin',array('model'=>$person_model));

Also worked as above

  echo $this->renderPartial('//person/admin',array('model'=>$person_model));

Upvotes: 2

Related Questions