Allows the user to edit a document through view or enbed view on web?

Hi all.I hope to edit document through view or enbed view on web.But R6 certainly didn’t support it.

So if i see view as html but not applet, i would transfer 132 to like opendocument to editdocument.

I know the way looked like impossible.So everyone has any other good ideas?

Subject: Allows the user to edit a document through view or enbed view on web??

If you use “Treat view contents as HTML”, you can create a separate form for each line of the view and make them individually submittable. Editing from a view has always been an option on the web – it’s just new to the client. Since it requires LotusScript to work, though, the client solution cannot be used on the web. There are a lot of other options as well – see Codestore.net, Notestips.com, dev.kanngard.com, etc., for more ideas.

Subject: RE: Allows the user to edit a document through view or enbed view on web??

Wow,cool.Thanks for helpful suggestions.

:slight_smile:

Subject: Allows the user to edit a document through view or enbed view on web??

You have a running example of just that on http://www.codestore.net

The database is called viewprocessor and is downloadable.

It works by encircling the embedded view by form tags and posting that form. It catches the field values and processes them by a webquerysave agent.

/Bobby

Subject: Allows the user to edit a document through view or enbed view on web??

There are many ways it can be done. Use HTML within the view with your fields or formulaes that you have. You can get the document unique id and open the document with that if you want, useing the Edit doc tags. There are other ways. Use what you find to be comfortable.