Need Help with odd IE7 issue 14 años 7 meses antes #1781
Autor del tema
jennifer
Visitante
I have a Joomla! 1.5.3 (or 1.5.4 install) with latest BreezingForms. I've made a form which works quite handily in Firefox, but in Internet Explorer 7 on a Vista machine, it does not display the form at all due to an error I believe is Javascript related: Can't move focus to the control because it is invisible, not enabled, or of a type that does not accept the focus.
Has anyone encountered this before? It is driving me nuts! Thanks in advance!
Re:Need Help with odd IE7 issue 14 años 7 meses antes #1874
Autor del tema
jennifer
Visitante
I managed to resolve it.
To make a long story really, really short, I edited the code field in the jos_facileforms_scripts table for the (id=6;name=ff_getfocus) row from:
function ff_getfocus(element,condition) {
element.focus();
}
to:
function ff_getfocus(element,condition) {
try {
element.focus();
} catch(er){
}
}
Problem solved. Well, technically, not solved so much as just not evident. I didn't bother trying to resolve why it couldn't get focus on that element.
P.S. Habe mir gerade die neue Version 1.5.9 gekauft!
Ist dieses Problem dort behoben?
Kann ich die alte Version 1.5.1 deinstallieren und 1.5.9 neu installieren und dann einfach exportierte Formular der Vorgängerversion installieren?? Geht dass?