<div style="margin: 10px 0 5px 0;">
|
<table summary="T" style="border:1px #666 solid;" width="100%" id="table_hints">
|
<tr class="fixed" align="center"><td class="td_title" colspan="2"><span style="font-weight: bold;">{$TABLE_NAME}</span></td></tr>
|
<tr class="fixed" align="center">
|
{foreach from=$COL_NAMES item=col key=iter name=fiter0}
|
<td class="fixed">{$col}</td>
|
{/foreach}
|
</tr>
|
<tr id="{$prefix}tr0_{$next}" align="center" onmouseover="Sel(this);" onmouseout="UnSel(this);" onclick="SelectItem(this, '{$prefix}');">
|
{foreach from=$DATA_RESULT item=col key=iter name=fiter0}
|
{if $iter>0}
|
<td {if $iter==1}width="20%"{/if} id="{$prefix}td0_{$next}_{$iter}" class="notfixed" align="center" onclick="xajax_SelectItem('{$prefix}', '{$DATA_RESULT[0]}', '0', '0');">{$col}</td>
|
{/if}
|
{/foreach}
|
</tr>
|
</table>
|
<div style="margin-top: 5px;">
|
<input type="button" onclick="xajax_hints_Next('hints_div', GID('grid_SELECTED').value, '{$next-1}');" title="{$btn_Back}" value="{$btn_Back}" {if $next==1}disabled class="disabled"{/if}/>
|
<input type="button" onclick="xajax_hints_Next('hints_div', GID('grid_SELECTED').value, '{$next+1}');" title="{$btn_Next}" value="{$btn_Next}" {if $next==$count}disabled class="disabled"{/if}/>
|
</div>
|
</div>
|