I'm new to yii framework so i could use some help with something. Lets say i got a table in my database with POST, 1 of the fields is TYPE. In another table i got a lot of types like this:
Table Type:
id name
1 Politic
2 Sport
3 Espiritual
Table Post:
id title
1 Politic in Barsovia
2 God exist!
3 Del Po Win in Rotterdam
Table Post_type
id id_post id_type
1 1 1
2 2 3
3 3 2
i have relationships in TYPE
'posttype' => array(self::HAS_MANY, 'Post_type', 'ID_TYPE'),
i have relationships in POST
'posttype' => array(self::HAS_MANY, 'Post_type', 'ID_POST'),
i wan this example
QUESTION:
how to make a list of checkboxes from the table TYPE
how to use activeCheckBoxList width CAdvancedArBehavior
