public function useWrapper(array $widget)
 {
     if (!empty($widget['options']['layout']) and $widget['options']['layout'] === 'full') {
         // using full layout, do not use wrapper
         return false;
     }
     return parent::useWrapper($widget);
 }