Loading...

RE: Handy uses of qListView (SP2007)

RE: Handy uses of qListView (SP2007)

#5127
Anonymous
Anonymous
Participant

And for another twist – a similar use can provide alternatives to the custom action buttons – just for more flexibility in layout.  We have a qListView with the Custom Display tab creating hyperlinks which open special-use webpart pages.  Below the qListForm that displays the general data for the item, we have a qListView, again, filtered for the current ID, with the definition shown below.  This places two links, one left-aligned and the other right-aligned, that open webpart pages for creating visitor passes for our manufacturing facilities.

<table>
<tr>
<td width=33%>
<font size=+1>
<a href="../../Shared%20Documents/companyPass1.aspx?companyID=<%ID%>&Source=../default.aspx">New Contractor Pass</a>
</font>
</td>
<td width=33%>
 
</td>
<td align=right>
<font size=+1>
<a href="../../Shared%20Documents/vehiclePass1.aspx?companyID=<%ID%>&Source=../default.aspx">New Vehicle Pass</a>
</font>
</td>
</tr>
</table>