BUG 8897 The image "Previous Step" doesn't have ID. It needs this... SOLVED

- We verified that these links did not have its respective id.
- Add the id for the Previous link in the xmlmenuDyn.html.
This commit is contained in:
Marco Antonio Nina
2012-05-02 18:56:00 -04:00
parent 8a3936c46b
commit 56d2ad0cd2

View File

@@ -17,9 +17,9 @@
{elseif ($field->type==='button')}
<td class='tableOption' align="{$field->colAlign}" width="{$field->colWidth}">{$field->field}</td>
{elseif ($field->type==='link') || ($field->type==='menu')}
<td class='tableOption' align="{$field->colAlign}" width="{$field->colWidth}"><img src="/images/bulletButtonLeft.gif" width="6" />&nbsp;{$field->field}</td>
<td class='tableOption' align="{$field->colAlign}" width="{$field->colWidth}"><img id="form[{$field->name}][bullet]" src="/images/bulletButtonLeft.gif" width="6" />&nbsp;{$field->field}</td>
{else}
<td class='tableOption' align="{$field->colAlign}" width="{$field->colWidth}"><img src="/images/bulletButton.gif" width="6" />&nbsp;{$field->label}&nbsp;{$field->field}</td>
<td class='tableOption' align="{$field->colAlign}" width="{$field->colWidth}"><img id="form[{$field->name}][bullet]" src="/images/bulletButton.gif" width="6" />&nbsp;{$field->label}&nbsp;{$field->field}</td>
{/if}
{/if}
{/foreach}
@@ -43,7 +43,7 @@
{elseif ($field->type==='link') || ($field->type==='menu')}
<td class='tableOption' align="{$field->colAlign}" width="{$field->colWidth}">{$field->field}</td>
{else}
<td class='tableOption' align="{$field->colAlign}" width="{$field->colWidth}"><img src="/images/bulletButton.gif" width="6" />&nbsp;{$field->label}&nbsp;{$field->field}</td>
<td class='tableOption' align="{$field->colAlign}" width="{$field->colWidth}"><img id="form[{$field->name}][bullet]" src="/images/bulletButton.gif" width="6" />&nbsp;{$field->label}&nbsp;{$field->field}</td>
{/if}
{/if}
{/foreach}
@@ -94,7 +94,7 @@
{elseif ($field->type==='link') || ($field->type==='menu')}
<div style="padding-left: 6px; padding-top: 8px; float: left;">{$field->field}</div>
{else}
<span><img src="/images/bulletButton.gif" width="6" />&nbsp;{$field->label}&nbsp;{$field->field}</span>
<span><img id="form[{$field->name}][bullet]" src="/images/bulletButton.gif" width="6" />&nbsp;{$field->label}&nbsp;{$field->field}</span>
{/if}
{/if}
{/foreach}