views:

514

answers:

0

Greetings,

I got trapped by following problem:

We got an non-accordion Menu, and within this menu several combo boxes.

The problem is, that actually none of the combo boxes are shown properly (no matter if you use the "traditional" combo boxes, or some fancy sexy-combo, /auto complete combo boxes etc.).

Here the code:

<html xmlns="http://www.w3.org/1999/xhtml"&gt;
<head>

  <script src="http://code.jquery.com/jquery-latest.js"&gt;&lt;/script&gt;

  <script type="text/javascript" src="jquery-1.3.2.min.js"></script>
  <script type="text/javascript" src="demo/menu.js"></script>
  <script type="text/javascript" src="development-bundle/ui/ui.accordion.js"></script>
  <script type="text/javascript" src="autogrow/jquery.autogrow.js"></script>
  <script type="text/javascript" src="sexy-combo/lib/jquery.sexy-combo-2.0.js"></script>


  <link rel="stylesheet" type="text/css" href="demo/style.css" /> //is for the menu

  //are both for the combo boxes
  <link rel="stylesheet" type="text/css" href="sexy-combo/lib/sexy-combo.css" />
  <link rel="stylesheet" type="text/css" href="sexy-combo/skins/sexy/skin_name.css" />

  </head>
  <body>
   <ul id="menu3" class="menu noaccordion">
  <li>
   <a href="#">Step 1: General Information</a>
   <ul>
    <li>        
                 <div>
      <p>Please fill out the following fields:</p>
            <p>
              <select id="sweets" name="tissue"  size="20">
                <option>cookies</option>
                <option>chocolate</option>
                <option>ice cream</option>
                    </select>
               </p>

       </div>                        
                </li>
   </ul>
  </li>
  </ul>
  </body>
  </html>

so the combo box initiated by "select" is simply not shown correctly. Do you have any idea how to solve the problem, or what the problem exactly is?

Regards

NullPointerException