Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeDNN Open Source...DNN Open Source...Module ForumsModule ForumsForm and ListForm and ListPaging problemsPaging problems
Previous
 
Next
New Post
2/26/2013 7:13 AM
 

Hi All,

Trying to use an old template from UserdefinedTable. By default it displays fine, apart from missing pagination. I've tried to add it, but not having any luck. Please can anyone give any pointers?

Thanks

<?xml version="1.0" encoding="UTF-8" ?>
<!-- UdtCardViewPlus Verion 1.0 -->
<xsl:stylesheet version='1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform' xmlns:udt="DotNetNuke/UserDefinedTable">
<xsl:output method="html" version="1.0" indent="yes"/>
<xsl:variable name="prefix_param">udt_<xsl:value-of select="//udt:Context/udt:ModuleId" />_param</xsl:variable>
<xsl:param name="param_page" select="1" />
<xsl:variable name="paging" select="//udt:Context/udt:Paging" />
<xsl:template match="/udt:UserDefinedTable">
<xsl:variable name ="imgColumn" select="//udt:Fields[udt:FieldType='Image'][1]/udt:ValueColumn"/>
<xsl:variable name ="titleColumn" select="//udt:Fields[udt:FieldType='String'][1]/udt:ValueColumn"/>
<xsl:variable name ="htmlColumn" select="//udt:Fields[udt:FieldType='TextHtml'][1]/udt:ValueColumn"/>
<xsl:variable name ="currencyColumn" select="//udt:Fields[udt:FieldType='Currency'][1]/udt:ValueColumn"/>
<xsl:variable name="orderBy" select="//udt:Fields[udt:UserDefinedFieldId=//udt:Context/udt:OrderBy]/udt:SortColumn" />
<xsl:variable name="orderDirection" select="//udt:Context/udt:OrderDirection" />


<table width = "400px" cellspacing="0" cellpadding="4" border="0" style="border-width:0px;border-collapse:collapse;">
<xsl:for-each select="udt:Data">
<xsl:sort select="*[name()=$orderBy]" order="{$orderDirection}" />
<xsl:variable name="id" select="udt:UserDefinedRowId"/>
<tr class="normal">
<td valign="top" style="border-bottom: silver 1px solid;">
<xsl:if test="udt:EditLink">
<a>
<xsl:attribute name="href">
<xsl:value-of select="udt:EditLink" />
</xsl:attribute>
<img border="0" alt="edit">
<xsl:attribute name="src">
<xsl:value-of select="//udt:Context/udt:ApplicationPath"/>/images/edit.gif</xsl:attribute>
</img>
</a>
</xsl:if>
</td>
<td valign="top" style="border-bottom: silver 1px solid;;">
<xsl:value-of select="//udt:Data[udt:UserDefinedRowId=$id]/*[name()=$imgColumn]" disable-output-escaping="yes"/>
</td>
<td style="border-bottom: silver 1px solid;">
<h2><xsl:value-of select="//udt:Data[udt:UserDefinedRowId=$id]/*[name()=$titleColumn]" disable-output-escaping="yes"/></h2>
<xsl:value-of select="//udt:Data[udt:UserDefinedRowId=$id]/*[name()=$htmlColumn]" disable-output-escaping="yes"/>
<table cellspacing="0" cellpadding="0" border="0">
<xsl:for-each select="//udt:Fields">
<xsl:variable name="NameOfValueColumn" select="udt:ValueColumn"/>
<xsl:variable name="CurrentValue" select="//udt:Data[udt:UserDefinedRowId=$id]/*[name()=$NameOfValueColumn]"/>
<xsl:if test ="$CurrentValue and $CurrentValue!='' and ($NameOfValueColumn!=$imgColumn or not($imgColumn)) and ($NameOfValueColumn!=$titleColumn or not($titleColumn)) and ($NameOfValueColumn!=$htmlColumn or not($htmlColumn))and (udt:Visible='true' or udt:Visible='True')" >
<tr class="normal">
<xsl:if test="(position() mod 2 = 1)">
<xsl:attribute name="bgcolor">#F6F6EE</xsl:attribute>
</xsl:if>
<td valign="top" class="subhead" >
<xsl:value-of select ="udt:FieldTitle"/>: </td>
<td>&#160;</td>
<td align="Left" valign="top" class="normal" >
<xsl:choose>
<xsl:when test="udt:FieldType='Currency'">
<xsl:value-of select='format-number($CurrentValue, "$###,##0.00")' disable-output-escaping="yes"/>
</xsl:when>
<xsl:when test="udt:FieldType='Int32' and udt:FieldTitle!='Year'">
<xsl:value-of select='format-number($CurrentValue, "###,##0")' disable-output-escaping="yes"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$CurrentValue" disable-output-escaping="yes"/>
</xsl:otherwise>
</xsl:choose>

</td>
</tr><tr></tr><td>&#160;</td>
</xsl:if>
</xsl:for-each>
</table>
</td>
</tr>
</xsl:for-each>
</table>
</xsl:template>

<xsl:template match="/udt:UserDefinedTable">
<xsl:variable name="currentData" select="udt:Data" />
<xsl:variable name="from">
<xsl:choose>
<xsl:when test="$paging">
<xsl:value-of select="$paging * number($param_page) - $paging" />
</xsl:when>
<xsl:otherwise>0</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:variable name="to">
<xsl:choose>
<xsl:when test="$paging">
<xsl:value-of select="$paging * number($param_page) +1" />
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="count($currentData)+1" />
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:if test="$currentData">
<table class="dnnFormItem">
<xsl:apply-templates select="$currentData" mode="list">
<xsl:with-param name="from" select="$from" />
<xsl:with-param name="to" select="$to" />
</xsl:apply-templates>
</table>
</xsl:if>
<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="pagingSinglePages">
<!--renders paging links-->
<xsl:param name="pageNumber" select="1" />
<xsl:param name="maxPages" select="ceiling(count(//udt:Data) div $paging)" />
<xsl:choose>
<xsl:when test="number($param_page)=$pageNumber">
<span class="NormalDisabled">[<xsl:value-of select="$pageNumber" />]</span>
</xsl:when>
<xsl:otherwise>
<a href="?{$prefix_param}_page={$pageNumber}" class="CommandButton">
<xsl:value-of select="$pageNumber" />
</a>
</xsl:otherwise>
</xsl:choose> 
<xsl:if test="$pageNumber &lt; $maxPages"><xsl:call-template name="pagingSinglePages"><xsl:with-param name="pageNumber" select="$pageNumber +1" /><xsl:with-param name="maxPages" select="$maxPages" /></xsl:call-template></xsl:if></xsl:template>

<xsl:template name="renderPaging">
<xsl:param name="maxPages" select="ceiling(count(//udt:Data) div $paging)" />
<xsl:variable name="previous" select="number($param_page) - 1" />
<xsl:variable name="next" select="number($param_page) + 1" />
<table class="dnnFormItem" bordercolor="Gray" border="0" style="border-color:Gray;border-width:1px;border-style:Solid;width:100%;">
<tr>
<td class="Normal" align="Left">
<xsl:value-of select="//udt:Context/udt:LocalizedString_Page" />&#160;<xsl:value-of select="number($param_page)" />&#160;<xsl:value-of select="//udt:Context/udt:LocalizedString_Of" />&#160;<xsl:value-of select="$maxPages" /></td>
<td class="Normal" align="Right">
<xsl:choose>
<xsl:when test="number($param_page)&gt;1">
<a href="?" class="CommandButton">
<xsl:value-of select="//udt:Context/udt:LocalizedString_First" />
</a>
</xsl:when>
<xsl:otherwise>
<span class="NormalDisabled">
<xsl:value-of select="//udt:Context/udt:LocalizedString_First" />
</span>
</xsl:otherwise>
</xsl:choose>  
<xsl:choose><xsl:when test="number($param_page)&gt;1"><a href="?{$prefix_param}_page={$previous}" class="CommandButton"><xsl:value-of select="//udt:Context/udt:LocalizedString_Previous" /></a></xsl:when><xsl:otherwise><span class="NormalDisabled"><xsl:value-of select="//udt:Context/udt:LocalizedString_Previous" /></span></xsl:otherwise></xsl:choose>  
<xsl:variable name="startpage"><xsl:choose><xsl:when test="number($param_page)&gt;5"><xsl:value-of select="number($param_page) -4" /></xsl:when><xsl:otherwise>1</xsl:otherwise></xsl:choose></xsl:variable><xsl:variable name="endpage"><xsl:choose><xsl:when test="$startpage+9&gt;$maxPages"><xsl:value-of select="$maxPages" /></xsl:when><xsl:otherwise><xsl:value-of select="$startpage +9" /></xsl:otherwise></xsl:choose></xsl:variable><xsl:call-template name="pagingSinglePages"><xsl:with-param name="pageNumber" select="$startpage" /><xsl:with-param name="maxPages" select="$endpage" /></xsl:call-template><xsl:choose><xsl:when test="number($param_page)&lt;$maxPages"><a href="?{$prefix_param}_page={$next}" class="CommandButton"><xsl:value-of select="//udt:Context/udt:LocalizedString_Next" /></a></xsl:when><xsl:otherwise><span class="NormalDisabled"><xsl:value-of select="//udt:Context/udt:LocalizedString_Next" /></span></xsl:otherwise></xsl:choose>  
<xsl:choose><xsl:when test="number($param_page)&lt;$maxPages"><a href="?{$prefix_param}_page={$maxPages}" class="CommandButton"><xsl:value-of select="//udt:Context/udt:LocalizedString_Last" /></a></xsl:when><xsl:otherwise><span class="NormalDisabled"><xsl:value-of select="//udt:Context/udt:LocalizedString_Last" /></span></xsl:otherwise></xsl:choose>  
</td>
</tr>
</table>
</xsl:template>

</xsl:stylesheet>

 
Previous
 
Next
HomeHomeDNN Open Source...DNN Open Source...Module ForumsModule ForumsForm and ListForm and ListPaging problemsPaging problems


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out