1) a javascript error.
Do you have a way to show javascript errors? (For example Firefox + Firebug, or IE + developer tools (F12))
2) Some error/warning message in the ajax call.
Could you check (For example Firefox + Firebug, or IE + developer tools (F12)) and the "Network" panel, what's the output of the ajax call ?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi everyone,
i have the problem that i cannot seach for any device when i would like to link CI to Person
I can only see all FunctionalCIs, if i choose the others, the Please Wait screen appears.
Thank you for help
Hmm,
Two possibilites:
1) a javascript error.
Do you have a way to show javascript errors? (For example Firefox + Firebug, or IE + developer tools (F12))
2) Some error/warning message in the ajax call.
Could you check (For example Firefox + Firebug, or IE + developer tools (F12)) and the "Network" panel, what's the output of the ajax call ?
It seems to be a problem with the Internet Explorer, with the Mozilla Firefox everything works fine
The problem is that we are using only the IE here.
Its a javascript Error in utils.js
Ok, I got it. It works fine with IE 9, but not with IE 9 emulating IE 8…
The fix is quite simple (I just committed it in SVN):
In the file 'js/utils.js'
Change the line 125 from:
for(index = 0; index < oFormEvents.submit.length; index++)
to
for(var index = 0; index < oFormEvents.submit.length; index++)
(Notice "var" before index = 0)
That should fix it ! (at least it does for me)
Is there any workaround to make it work on IE 8?
Thanks a lot
Oh sorry i didn't see your post above
thaks a lot it works!!!