zend framework2 - How to disable a view in ZF2 without losing the style? -
how disable view in zf2 without disabling style ? when did :
$datas = $query->getresult(); $result = new viewmodel(array( 'datas' => $datas )); $result->setterminal(true); return $result;
i got data lost style ... thanks.
like tim in comment said: layout contains styling.
what manually echo
helper in view.
echo $this->headlink();
for example.
Comments
Post a Comment