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:
@@ -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" /> {$field->field}</td>
|
||||
<td class='tableOption' align="{$field->colAlign}" width="{$field->colWidth}"><img id="form[{$field->name}][bullet]" src="/images/bulletButtonLeft.gif" width="6" /> {$field->field}</td>
|
||||
{else}
|
||||
<td class='tableOption' align="{$field->colAlign}" width="{$field->colWidth}"><img src="/images/bulletButton.gif" width="6" /> {$field->label} {$field->field}</td>
|
||||
<td class='tableOption' align="{$field->colAlign}" width="{$field->colWidth}"><img id="form[{$field->name}][bullet]" src="/images/bulletButton.gif" width="6" /> {$field->label} {$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" /> {$field->label} {$field->field}</td>
|
||||
<td class='tableOption' align="{$field->colAlign}" width="{$field->colWidth}"><img id="form[{$field->name}][bullet]" src="/images/bulletButton.gif" width="6" /> {$field->label} {$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" /> {$field->label} {$field->field}</span>
|
||||
<span><img id="form[{$field->name}][bullet]" src="/images/bulletButton.gif" width="6" /> {$field->label} {$field->field}</span>
|
||||
{/if}
|
||||
{/if}
|
||||
{/foreach}
|
||||
|
||||
Reference in New Issue
Block a user