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
{{ message }}
This repository has been archived by the owner on Nov 28, 2017. It is now read-only.
There are views using the pagination component:
$this->pagination->getListFooter();
However, in order to work properly they need the pagination JS script.
So, the views need the pagination should always contain
JHtml::_('behavior.formvalidation'); (which is missing).
admin/views/helloworlds/tmpl/default.php
should contains
JHtml::_('behavior.formvalidation');
just below
defined('_JEXEC') or die('Restricted Access');
thanks
regards
Francesco
The text was updated successfully, but these errors were encountered:
There are views using the pagination component:
$this->pagination->getListFooter();
However, in order to work properly they need the pagination JS script.
So, the views need the pagination should always contain
JHtml::_('behavior.formvalidation'); (which is missing).
For example, in the Step 10
https://docs.joomla.org/J3.x:Developing_a_MVC_Component/Adding_backend_actions
admin/views/helloworlds/tmpl/default.php
should contains
JHtml::_('behavior.formvalidation');
just below
defined('_JEXEC') or die('Restricted Access');
thanks
regards
Francesco
The text was updated successfully, but these errors were encountered: