> --
> You received this message because you are subscribed to the Google Groups
> "Joomla! General Development" group.
> To view this discussion on the web, visit
> https://groups.google.com/d/msg/joomla-dev-general/-/eOiIuJv3D2wJ.
> To post to this group, send an email to joomla-de...@googlegroups.com.
> To unsubscribe from this group, send email to
> joomla-dev-gene...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/joomla-dev-general?hl=en-GB.
Since he is talking about a Javascript script, which is provided by Joomla and exclusively runs on your client PC in the browser, without connection to the server and without any loading issues from the server (the script is already loaded a long time ago and is also just a few kb in size), none of the answers so far are really helpfull.
However, I don't have a solution for you either. Using 800 parameters is A LOT. I'm not sure if there really is a good solution... More than 30 parameters are already a lot simply in terms of usability...
From my perspective you have two possibilities: You can try to improve the validation script or you can remove the logic from the script and always make it return true. Unless you drastically reduce the number of parameters.
<?php
class JFormFieldFix extends JFormField
{
protected $type = 'Fix';
protected function getInput()
{
$output .= '<script type="text/javascript">
window.addEvent("domready", function()
{
// Special fix for Joomla 1.6, 1.7 & 2.5.
document.formvalidator.isValid = function() {return true;};
})
</script>';
return $output;
}
}
?>
Best regards
Rouven