hello
i have a really hudge form with something like 80 field i put a jquery toogle for do a stucture
but impossible to add new field. When i click save i'm directly redirect to jommla administration homepage. i try on a other joomla website but i get the same problem.
i'm running on joomla 1.6.0
i put my form in attachement (other people can use it to do hudge form it's really cool.... when it's work)
please heeelp mee
P.S 0.1:sorry for my poor english
P.S 0.2 : replace the custom code named "core engine" that code to don't have conflict and keep the java validation and the tooltip
i have a really hudge form with something like 80 field i put a jquery toogle for do a stucture
but impossible to add new field. When i click save i'm directly redirect to jommla administration homepage. i try on a other joomla website but i get the same problem.
i'm running on joomla 1.6.0
i put my form in attachement (other people can use it to do hudge form it's really cool.... when it's work)
please heeelp mee
P.S 0.1:sorry for my poor english
P.S 0.2 : replace the custom code named "core engine" that code to don't have conflict and keep the java validation and the tooltip
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
var $j = jQuery.noConflict();
$j(document).ready(function() {
// choix du texte a show/hide
var showText='+/-';
var hideText='+/-';
var is_visible = false;
$j('.toggle').prev().append(' (<a href="#" class="toggleLink">'+showText+'</a>)');
$j('.toggle').hide();
$j('a.toggleLink').click(function() {
is_visible = !is_visible;
//$('.toggle').hide();$('a.toggleLink').html(showText);
$j(this).parent().next('.toggle').toggle('slow');
return false;
});
});
</script>