• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

window.showModalDialog in javascript

 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

i am using window.showModalDialog(action_url,arguments,features)where action_url contains one jsp file which have iframe and its opening rich Text Editor.
when we are using window.open(action_url,arguments,features) its working fine and all contains of rich Text Editor are opening in editable format.

But when we are using window.showModalDialog(action_url,arguments,features)without making any other changes its opening rich text editor in read only format but i need in same editable format.

Please help me.

Thanks
Arvind
 
Arvind singh pal
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,
i am updating some more information of above problem-
i have one Editor.html which contains all code to generate rich Text editor,Frameadd.html have 3 frameset in which one frame is Editor.html,Main.html has button which calling Frameadd.html after that the work area of rich text editor become protected while when we are opening editor.html and Frameadd.html separately ,work area of editor working fine.

Please give me solution,
 
Arvind singh pal
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
i got the solution of my problem i was using document.designMode="on";which working for IE<=5.5 and for further version we need use document.body.contentEditable = "True";



Thanks
Arvind
 
reply
    Bookmark Topic Watch Topic
  • New Topic