<ViewDefinitions xmlns="http://www.windex.nl/schemas/viewdefinition/2007">
	<Views>
		<View Name="Dossiers" HiddenColumnIds="0;2;3" DefaultOrderColumn="1">
			<Columns>
				<XsltColumn HeaderText="Naam" Ordinal="1" OrderBy="Name">
					<Transform>
						<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl">
							<xsl:output method="html" indent="yes"/>
							<xsl:variable name="apos" select='"&apos;"'/>

							<xsl:template match="/Row">
								<div>
									<xsl:attribute name="ondblclick">
										<xsl:value-of select="concat('PopupProcess(', $apos, $apos, ', ', $apos, Column[@name = 'Url']/., $apos, ');')"/>
									</xsl:attribute>
									<xsl:value-of select="Column[@name = 'Naam']/."/>
								</div>
							</xsl:template>
						</xsl:stylesheet>
					</Transform>
				</XsltColumn>
			</Columns>
		</View>
	</Views>
</ViewDefinitions>