Hello, i looked for the UTD section ? but did no see it so sorry if posted in the wrong section.
I have created my own UDT table and included the search option at the top, everything is fine with that, but i would like to add a line just below the search box and before the entries, i am guessing i need to add some code to the xsl file but not sure exactly what code and where it needs to be placed. Do i add
<td><hr /></td> this as the code or do I only need the rule section ? <hr /> ?
Next is where to place this in the xsl so it lands in the right spot with no spacing per say , i have a section of code below and marked my guess as to it's correct placing but any help would be good
thanks
Pete
</xsl:variable>
<table cellpadding="0" cellspacing="0">
<xsl:apply-templates select="$currentData" mode="list">
<xsl:sort select="*[name()=$orderBy]" order="{$orderDirection}" data-type="{$orderType}" />
<xsl:with-param name="from" select="$from" />
<xsl:with-param name="to" select="$to" />
</xsl:apply-templates>
</table>
<xsl:if test="$paging">
<xsl:call-template name="renderPaging">
<xsl:with-param name="maxPages" select="ceiling(count($currentData) div $paging)" />
</xsl:call-template>
</xsl:if>
</xsl:template>
<xsl:template name="Searchform">
<input type="text" name="{$prefix_param}_searchPostback" value="{$search}" />
<input type="submit" name="go" value="{//udt:Context/udt:LocalizedString_Search}" />
<input type="hidden" name="{$prefix_param}_ispostback" value="true" />
</xsl:template>
PLACE CODE HERE ?
<xsl:template name="pagingSinglePages">
<!--renders paging links-->
<xsl:param name="pageNumber" select="1" />