You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have below function in AppController
public function beforeRender(EventInterface $event)
{
$this->viewBuilder()->setTheme('AdminLTE');
$this->viewBuilder()->setClassName('AdminLTE.AdminLTE');
}
but If I comment the line ' $this->viewBuilder()->setClassName('AdminLTE.AdminLTE');' I am able to get json data from server.
so It seems the issue is somewhere after setting the ClassName
I wish this could be fixed.
Regards,
Ashish
The text was updated successfully, but these errors were encountered:
when I try to access the http://localhost:8765/users.json it does not return me the json data
I have below function in AppController
public function beforeRender(EventInterface $event)
{
$this->viewBuilder()->setTheme('AdminLTE');
$this->viewBuilder()->setClassName('AdminLTE.AdminLTE');
}
but If I comment the line ' $this->viewBuilder()->setClassName('AdminLTE.AdminLTE');' I am able to get json data from server.
so It seems the issue is somewhere after setting the ClassName
I wish this could be fixed.
Regards,
Ashish
The text was updated successfully, but these errors were encountered: