Sharepoint 2007 Word Document opens as read only -
i have word document in document library when open web part opens 'read only' , let me save document file name.
if open directly document library file can edited i've setup wiki page , want able edit document once opened web part.
can edit document straight opening in web part hyperlink?
if can change webpart. replace links file name , make them point javascript function:
function editdocumentinprog(strdocument) { var editdocument= new activexobject("sharepoint.opendocuments.1"); if (editdocument) { var newdoc = editdocument.editdocument(strdocument); if (!newdoc) window.location.href = strdocument; } } the parameter strdocument have desired filename.
a little more information can found here: http://msdn.microsoft.com/en-us/library/dd588661(v=office.11).aspx
Comments
Post a Comment