These forums are read-only and considered to be an archive. Please use the new Community for future interaction and posts.

Remove Action Items

I love the finctionality of the program but don't need the Action buttons; Remove File, Browse and Delete. I just want my users to view the file by clicking on the name of the file. 
Joel Cruzada 11/27/2007 10:21 AM
I had the same issue.  I did not want to have the delete action for all users.  To remove all actions, remove the following:

<td nowrap>
            &nbsp;
            <%If virtual<>"" Then%>
            <a href="<%=virtual & item.Name%>" target="_blank"><img align=absmiddle border=0 width=11 height=14 src="./images/browse.png" alt="Browse Folder"></a>
            <%End If%>
            <a href="javascript:Command('RenameFolder', &#34;<%=item.Name%>&#34;);"><img align=absmiddle border=0 width=11 height=14 src="./images/rename.png" alt="Rename Folder"></a>
            <a href="javascript:Command('DeleteFolder', &#34;<%=item.Name%>&#34;);"><img align=absmiddle border=0 width=14 height=14 src="./images/delete.png" alt="Delete Folder"></a>
        </td>
Shawn Blue 3/22/2008 4:50 PM
The above code is in the default.asp, and it is around row 488
Shawn Blue 3/22/2008 4:51 PM