Skip to main content
Participating Frequently
July 31, 2013
Answered

cf9 cfwindow issue in ie7 ie8 ie9 works in ie10

  • July 31, 2013
  • 1 reply
  • 719 views

i have a cfwindow that works fine in ie10 but when i went to test it in other browsers (not that i wanted to ) but it didnt work at all , i did get this error

cfajax.js, line 90 character 1

here is my code.

....

<cfajaximport tags="cfwindow">

....

ColdFusion.Window.create(

       win,

       'spare parts desc',

       splink,

       {

        height:h,

        width:700,

        modal:true,

        closable:true,

        draggable:true,

        resizable:true,

        center:true,

        initshow:true,

        y:tempY

       }

      )

      winname=win;

      return false;

...

is there a solution to make this work in ie7 , ie8 or ie9 without breaking what is working in ie10

This topic has been closed for replies.
Correct answer p_sim

Look at jqueryui.com. It has a lot of sample code.

jQueryUI Dialog is equivalent to cfwindow.

1 reply

p_sim
Participating Frequently
July 31, 2013

As I have been telling others, avoid using any built-in UI-related CF tags. It's better to use a third-party JavaScript library such as jQuery which maintains wide range browser compatibilities.

braddiniAuthor
Participating Frequently
July 31, 2013

i understand that lol , would you happen to have some sample code that works like cfwindow for jquery?

p_sim
p_simCorrect answer
Participating Frequently
July 31, 2013

Look at jqueryui.com. It has a lot of sample code.

jQueryUI Dialog is equivalent to cfwindow.