2016-01-30 20:28:43 +00:00
|
|
|
###BOM###
|
|
|
|
|
|
|
|
Joomla.submitbutton = function(task)
|
|
|
|
{
|
|
|
|
if (task == ''){
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
var action = task.split('.');
|
2019-01-30 14:00:21 +00:00
|
|
|
if (action[1] == 'cancel' || action[1] == 'close' || document.formvalidator.isValid(document.getElementById("adminForm"))){
|
|
|
|
Joomla.submitform(task, document.getElementById("adminForm"));
|
2016-01-30 20:28:43 +00:00
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
alert(Joomla.JText._('###view###, some values are not acceptable.','Some values are unacceptable'));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|