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

cf9 cfwindow issue in ie7 ie8 ie9 works in ie10

New Here ,
Jul 31, 2013 Jul 31, 2013

Copy link to clipboard

Copied

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

Views

596

Translate

Translate

Report

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.

Votes

Translate

Translate
Engaged ,
Jul 31, 2013 Jul 31, 2013

Copy link to clipboard

Copied

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.

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

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

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

LATEST

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

jQueryUI Dialog is equivalent to cfwindow.

Votes

Translate

Translate

Report

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
Documentation