Spaces:
Sleeping
Sleeping
File size: 5,305 Bytes
07c3cdd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 | {if $printTemplate}
{* this is the grid template *}
<div class="grid">
<div class="boxTop"><div class="a"></div><div class="b"></div><div class="c"></div></div>
<div class="content" style="{$form->scrollStyle};">
<table class="" width="100%" cellpadding="0" cellspacing="0">
<tr>
<th>{$form->label}</th>
</tr>
</table>
<table class="tableGrid" align="center" id="form[{$form->name}]" cellpadding="0" cellspacing="0">
<tr><td valign='top'>
{if ($form->addRow) }
<table class='Record'>
<tr><td></td>
<td><img id="form[{$form->name}][bullet]" src="/images/bulletButton.gif" /> <a id="form[{$form->name}][addLink]" class="GridLink" href="javascript:;" value="Insert" onclick="form_{$form->owner->id}.getElementByName('{$form->name}').addGridRow(); return false;">{$form->NewLabel}</a></td>
</tr>
</table>
{/if}
<table class="tableGrid" name="{$form->name}" id="{$form->name}" cellpadding="0" cellspacing="0" border="0">
<tr>
<td> </td>
{foreach from=$form->fields item=field}
{if ($field->type != "hidden")}
<td class="vFormTitle">{if (isset($field->required) && $field->required && $field->mode == "edit")}<font color="red">* </font>{/if}{$field->label}{$field->renderHint()}</td>
{else}
<td style="display: none;"></td>
{/if}
{/foreach}
</tr>
{literal}
{section name=row loop=$form_rows}
{if ($smarty.section.row.index==0)}
<tr id="firstRow_{$form_name}" onmouseout="highlightRow(this, '#fff')" onmouseover="highlightRow(this, '#D9E8FF')">
{else}
<tr onmouseout="highlightRow(this, '#fff')" onmouseover="highlightRow(this, '#D9E8FF')">
{/if}
<td class='GridLabel'> {$smarty.section.row.index+1} </td>
{/literal}
{foreach from=$form->fields item=field}
{if ($field->type != "hidden")}
<td style="white-space: nowrap;">{$field->field}</td>
{else}
<td style="display: none;">{$field->field}</td>
{/if}
{/foreach}
{if $form->deleteRow == '1' }
<td align="center"><A class="GridLink" href="javascript:;" onclick="form_{$form->owner->id}.getElementByName('{$form->name}').deleteGridRow('[{literal}{$smarty.section.row.index+1}{/literal}]'); return false;">{$form->DeleteLabel}</A> </td>
{/if}
{if ($form->editRow=='1')}
<td>edit"{$form->editRow}"</td>
{/if}
{literal}
</tr>
{/section}
{* TOTALIZABLE ROW *}
<tr>
<td></td>
{/literal}
{foreach from=$form->fields item=field}
{if ($field->type != "hidden")}
<td>
{if (isset($field->function) && $field->function != "") }
{if $field->function == "sum"}
<font color="black">Σ = </font><span id="form[SYS_GRID_AGGREGATE_{$form->name}__{$field->name}]">{$field->aggregate}</span><input type="hidden" name="form[SYS_GRID_AGGREGATE_{$form->name}_{$field->name}]" id="form[SYS_GRID_AGGREGATE_{$form->name}_{$field->name}]" value="{$field->aggregate}" />
{elseif $field->function == "avg"}
<font color="black"><span style="text-decoration: overline;">x</span> = </font><span id="form[SYS_GRID_AGGREGATE_{$form->name}__{$field->name}]">{$field->aggregate}</span><input type="hidden" name="form[SYS_GRID_AGGREGATE_{$form->name}_{$field->name}]" id="form[SYS_GRID_AGGREGATE_{$form->name}_{$field->name}]" value="{$field->aggregate}" />
{/if}
{/if}
</td>
{else}
<td style="display: none"></td>
{/if}
{/foreach}
{literal}
</tr>
{/literal}
</table>
</td></tr>
</table>
</div>
<div class="boxBottom"><div class="a"></div><div class="b"></div><div class="c"></div></div>
</div>
{/if}
{if $printJSFile}
function grid_{$form->id}(myGrid)
{literal}{{/literal}
{* setFunctions: Define the aggregate functions *}
{php}$this->assign('firstfield', true);{/php}
myGrid.setFunctions([
{foreach from=$form->fields item=field name=foreachField}
{if isset($field->function)&& $field->function!==''}
{if !$firstfield},{/if}
{literal}{{/literal}sFieldName: '{$field->name}', sFunction: '{$field->function}'{literal}}{/literal}
{php}$this->assign('firstfield', false);{/php}
{/if}
{/foreach}
]);
{* setFormulas: Define the customs formulas *}
{php}$this->assign('firstfield', true);{/php}
myGrid.setFormulas([
{foreach from=$form->fields item=field name=foreachField}
{if isset($field->formula)}
{foreach from=$field->dependentOf() item=dependentOf name=foreachDependent}
{if !$firstfield},{/if}
{literal}{{/literal} sDependentOf: '{$dependentOf}', sFieldName: '{$field->name}', sFormula: '{$field->formula}'{literal}}{/literal}
{php}$this->assign('firstfield', false);{/php}
{/foreach}
{/if}
{/foreach}
]);
{* setFields: Define the controles's javascript *}
{php}$this->assign('firstfield', true);{/php}
myGrid.setFields([
{foreach from=$form->fields item=field name=foreachField}
{if !$firstfield},{/if}
{literal}{{/literal}sFieldName: '{$field->name}', sType: '{$field->type}', oProperties:{$field->getAttributes()}, oEvents:{$field->getEvents()}{literal}}{/literal}
{php}$this->assign('firstfield', false);{/php}
{/foreach}
]);
{literal}}{/literal}
{/if}
{if $printJavaScript}
{/if}
|