Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

cf9 cfwindow issue in ie7 ie8 ie9 works in ie10

New Here ,
Jul 31, 2013 Jul 31, 2013

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

647
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Engaged , Jul 31, 2013 Jul 31, 2013

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

jQueryUI Dialog is equivalent to cfwindow.

Translate
Engaged ,
Jul 31, 2013 Jul 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.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jul 31, 2013 Jul 31, 2013

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

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Engaged ,
Jul 31, 2013 Jul 31, 2013
LATEST

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

jQueryUI Dialog is equivalent to cfwindow.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources