Menu

Problems with linking CI to Person

Hans Wurst
2012-12-11
2012-12-19
  • Hans Wurst

    Hans Wurst - 2012-12-11

    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

     
  • Denis

    Denis - 2012-12-11

    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 ?

     
  • Hans Wurst

    Hans Wurst - 2012-12-11

    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

     
  • Denis

    Denis - 2012-12-11

    Ok, I got it. It works fine with IE 9, but not with IE 9 emulating IE 8…

     
  • Denis

    Denis - 2012-12-11

    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)

     
  • Hans Wurst

    Hans Wurst - 2012-12-11

    Is there any workaround to make it work on IE 8?

    Thanks a lot

     
  • Hans Wurst

    Hans Wurst - 2012-12-11

    Oh sorry i didn't see your post above

    thaks a lot it works!!!

     

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.