Jump to content
xt:Commerce Community Forum

Hersteller Dropdown funktioniert nicht


mrwmandy

Recommended Posts

Ich habe folgende Liste, die funktioniert, dort werden meine (noch) 3 Hersteller angezeigt:

<h2 class="boxmanufacturerheader">{txt key=TEXT_BOX_TITLE_MANUFACTURERS}</h2>

<div class="boxbody">

<ul id="manufacturerslist">

{foreach name=aussen item=module_data from=$_manufacturers}

	<li><a href="{$module_data.link}">{$module_data.manufacturers_name}</a></li>

{/foreach}

</ul>

</div>
im Forum habe ich einen Hersteller Dropdown gefunden, der geht leider nicht. Woran kann das liegen? Hier der Dropdown Code:
<h2 class="boxheader">{txt key=TEXT_BOX_TITLE_MANUFACTURERS}</h2>

<div class="boxbody">

<ul id="manufacturerslist">

    <select name="manufacturerslist" size="1" onChange="location.href=this.options[this.selectedIndex].value">

      <option value="#">- Hersteller wählen -</option> 

	{foreach name=aussen item=module_data from=$_manufacturers}

	<option value="{$module_data.link}">

	{$module_data.manufacturers_name}

	</option>

	{/foreach}

</select>

</ul>

</div>

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...