attachAjaxUpdateEvent() public static method

injects ajaxUpdate event into widget
public static attachAjaxUpdateEvent ( mixed $widget )
$widget mixed
Beispiel #1
0
 public function init()
 {
     if (!$this->name) {
         throw new CException('You should provide name for EditableColumn');
     }
     parent::init();
     //need to attach ajaxUpdate handler to refresh editables on pagination and sort
     Editable::attachAjaxUpdateEvent($this->grid);
 }