I have a requirement like to display the embedded view in read only mode. Currently on double clicking the Embedded view it is opening the form. I want this Embedded view in read only mode. Is it possible?
thanks in advance .
I have a requirement like to display the embedded view in read only mode. Currently on double clicking the Embedded view it is opening the form. I want this Embedded view in read only mode. Is it possible?
thanks in advance .
Subject: Embedded Views - Read only
I’m a little confused… do you want the embedded view to be displayed but that none of the documents in it can be opened by the user?
Subject: RE: Embedded Views - Read only
Yes I dont want user to open the Document? Just for a display display
Subject: Embedded Views - Read only
I don’t think you can make an embedded view a “display only” view as it works like most other views displaying a selection of documents. (Seems I was wrong see Basir’s posting ==> )
You could add code to the form itself that when a someone tried to open the document, it would then close the form.
Or give up some of the functionality and look of a view and have a table that populates the table with the view information.
Subject: Embedded Views - Read only
In Queryopendocument event of the view add the following code:
continue = false
then no document can be opened from the view and double click will have no effect.
Subject: RE: Embedded Views - Read only
thanks Basir. Works well. Thanks to all the responses