what am i doing wrong here?
what i want to do is make two menus work together to show me a result.. please help ...

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:spry="http://ns.adobe.com/spry">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
<script src="SpryAssets/SpryData.js" type="text/javascript"></script>
<script src="SpryAssets/SpryHTMLDataSet.js" type="text/javascript"></script>
<script type="text/javascript">
<!--
var ds1 = new Spry.Data.HTMLDataSet("test.html", "pricelist");
//-->
</script>
<link href="SpryAssets/SpryMasterDetail.css" rel="stylesheet" type="text/css" />
</head>

<body>
<div class="MasterDetail">
  <div spry:region="ds1" class="MasterContainer">
    <div    spry:setrow="ds1">
     
      
      
   <select spry:repeatchildren="ds1" name="width" >
      <option value="{width}">{width}</option>
   </select>
   <select spry:repeatchildren="ds1" name="drop" >
      <option value="{drop}">{drop}</option>
   </select>

    </div>
  </div>
  <div spry:detailregion="ds1" class="DetailContainer">
    <div class="DetailColumn">{price}</div>
  </div>
  <br style="clear:both" />
</div>
</body>
</html>

Try something like this for each option box.

<select name="issuez" spry:repeatchildren="ds1" onchange="ds1.setCurrentRowNumber(this.selectedIndex);" 
<option spry:if="{ds_RowNumber} == {ds_CurrentRowNumber}" value="" selected="selected">{width}</option>
<option spry:if="{ds_RowNumber} != {ds_CurrentRowNumber}" value="">{width}</option>
</select>
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.