taron133
2020-10-26 aa8d874c8a3287d41d26566ae32b6ed8d4557ff9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<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" class="btn btn-info" onclick="xajax_hints_Next('hints_div', (GID('grid_SELECTED') ? GID('grid_SELECTED').value : '0' ), '{$next-1}', '{$task}');" title="{$btn_Back}" value="{$btn_Back}" {if $next==1}disabled class="disabled"{/if}/>
    <input type="button" class="btn btn-info" onclick="xajax_hints_Next('hints_div', (GID('grid_SELECTED') ? GID('grid_SELECTED').value : '0' ), '{$next+1}', '{$task}');" title="{$btn_Next}" value="{$btn_Next}" {if $next==$count}disabled class="disabled"{/if}/>
    </div>
</div>