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
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');
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