Skip to content
Snippets Groups Projects
Commit 4651b6cc authored by Kurund Jalmi's avatar Kurund Jalmi
Browse files

Merge pull request #897 from pratik-joshi/CRM-12684

CRM-12684 fix: if custom data's profile field weight order is against to the order of its creation then the issue replicates
parents 01a72606 096ab86c
No related branches found
No related tags found
No related merge requests found
......@@ -32,25 +32,24 @@
<div id="browseValues">
<div>
{strip}
<table id="records" class="display">
<thead>
<tr>
<table id="records" class="display">
<thead>
<tr>
{foreach from=$headers key=recId item=head}
<th>{ts}{$head}{/ts}</th>
{/foreach}
{/foreach}
<th></th>
</tr>
</thead>
{foreach from=$records key=recId item=rows}
<tr class="{cycle values="odd-row,even-row"}">
{foreach from=$rows item=row}
{foreach from=$row item=val key=ids}
<td>{$val}</td>
{/foreach}
{/foreach}
</tr>
{/foreach}
</table>
</thead>
{foreach from=$records key=recId item=rows}
<tr class="{cycle values="odd-row,even-row"}">
{foreach from=$headers key=hrecId item=head}
<td>{$rows.$hrecId}</td>
{/foreach}
<td>{$rows.action}</td>
</tr>
{/foreach}
</table>
{/strip}
</div>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment