i want to show a list of items and corresponding actions that the user can perform for each item, these actions will be shown as buttons. Further the buttons will be dynamic, i.e. once a certain action has been performed, that button will not be shown anymore, or it may be shown as undo action button.
i get that this is somewhat like a CButtonColumn. is this correct?
Also the data that i will use to populate the list will be dynamic, but not from a db in my app, but an external web source. Should i be using a form model for it? or i can do this without a model?
Then where in the app directory can i put the view for this?
And how do i decide the controller for it? write a new controller, or have an action in an existing controller?
Any kind of help will be much appreciated. Im a total newbie to web programming in general, and completely confused how to handle this, following full MVC practices. So please guide me.