I am trying to get TbEditableColumn to work using Yiibooster. I followed the instructions here http://yii-booster.clevertech.biz/components.html#editable
I am confused by the line
'editable' => array( 'url' => $this->createUrl('site/editable'), 'placement' => 'right', 'inputclass' => 'span3' )
Does this mean that I should already have an actionEditable () method or should I create one?
I tried using the existing actionUpdate ($ id) method in my image controller.
'editable' => array( 'url' => $this->createUrl('image/update', array('id'=>'1')), 'placement' => 'right', 'inputclass' => 'span3'
ATM updates the frontend, but when I refresh the page, it does not retain its meaning.
In this example, I hardcoded the identifier.
If I need to create an actionEditable method, has anyone done this and can post how?
Yours faithfully:)
source share