We are working on a Notes client application. On click of button from Notes client, a Rich text editor on IE has to been opened in a window and this window should be a modal window.
How can u make this window as modal window?
We are working on a Notes client application. On click of button from Notes client, a Rich text editor on IE has to been opened in a window and this window should be a modal window.
How can u make this window as modal window?
Subject: Modal Window in IE from Notes Client Button
You can’t. I am confused though. You state that you are working on a Notes client application but your rich text editor is opening in a IE window. Why would you do this?
Subject: RE: Modal Window in IE from Notes Client Button
Our application has grown upto 22GB. Now we are trying to store the Rich text data in Non Notes database. Our Plan is to use a Rich text editor in IE and when we submit, the rich text data to get stored in non notes database.
Subject: RE: Modal Window in IE from Notes Client Button
You don’t need to use IE in order to accomplish that - it can be done from within the Notes client. You would serialize the rich text data from your Notes form and store it somewhere else (SQL DB or file system or whatever), then strip it out before the document is saved.
To get it back, just read it in from your external data source in the queryopen event of the form.
Not the most performant solution around, but much easier for the user that opening a completely seperate application window to work with the RT data.
The rich text serialization operations could be carried out with the NotesMIMEEntity class (see help for more info on this).