I recently updated a Joomla site to 3.4.2 and it ruined its Jumi module. It was refusing to save.
I'm posting you the answer.
I recently updated a Joomla site to 3.4.2 and it ruined its Jumi module. It was refusing to save.
I'm posting you the answer.
On trying to save in Jumi module, your console [F12] probably throw this Error :
Uncaught TypeError: Cannot read property 'task' of null
What it is trying to do is send your "form" by ID You'll see that your Form don't have a defined 'Id'
<form action="index.php" method="post" name="adminForm">
All you need to do is:
1) Go in this folder your_site\administrator\components\com_jumi\views\editapplication\tmpl\
2) Open default.php with a code/text editor.
3-a) At lines 44 and 144 , add the property id="adminForm"
Both lines should now look like
<form action="index.php" method="post" name="adminForm" id="adminForm">
3-b) Save it.
Jumi should now be able save.
Enjoy.
I was really frustrated with the three non working buttons on all components after a recent upgrade, but clearing browser cache and closing and reopening the browser seemed to solve it.