This is may be a stupid question, but I am kind of new in yii, and had problem with this simple view.. I have a data like this:
task_type
id name 1 agenda 2 task 3 notes
agenda:
id user due_at created_at task_type_id description
And I would like to display them separately, as agenda and tasks, and notes in different html views like these:
tasks
due_at description
agenda
due_at created_at description
notes
description
I don't want any fancy user filtering as these tables only shows one week max on front page, for current week, and there will be separate page dedicated for this sort of tasks. This is only at front page as quick tasks. I have been trying on CGridView but can't filter it without letting html filter to show up. I need to filter at due_at, and ranged due_at for agenda, and then by user.
Can someone help me to create this?
Thank you in advance