ChavezArquitectos / curvycorners

Automatically exported from code.google.com/p/curvycorners
0 stars 0 forks source link

Drop List Issue #114

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Apply curvyCorners manually on a div (by its id) that contains a form that 
contains a select item (droplist)

What is the expected output?
A droplist with options inside the form.

What do you see instead?
Only the arrow of the droplist apear and the content is empty.

What version of the product are you using?
2.1

On what operating system?
Windows XP Version 5.1 build 2600 with Sp3

Please provide any additional information below.
The expected code :
<div id="form">
    <div style="..."></div>
    <div class="autoPadDiv" style="...">
        <div>
            <div>XXXXXXX</div>
            <form method="POST" action="xxxxx">
                <div>XXXXX</div>
                <div>
                    <label for="xxx">Xxxx</label>
                    <select name="xxx" id="xxx" onchange="Xxxx();">
                        <option>x1x</option>
                        <option>x2x</option>
                        <option>x3x</option>
                        <option>x4x</option>
                    </select>
                </div>
                <div>XXXXX</div>
                <div>XXXXX</div>
                <div>XXXXX</div>
                <div>XXXXX</div>
            </form>
        </div>
    </div>
</div>

The generated code :
<div id="form">
    <div style="..."></div>
    <div class="autoPadDiv" style="...">
        <div>
            <div>XXXXXXX</div>
            <form method="POST" action="xxxxx">
                <div>XXXXX</div>
                <div>
                    <label for="xxx">Xxxx</label>
                    <select name="xxx" id="xxx" onchange="Xxxx();">
                        <div style="..."></div>
                        <div class="autoPadDiv" style="...">
                            <option>x1x</option>
                            <option>x2x</option>
                            <option>x3x</option>
                            <option>x4x</option>
                        </div>
                    </select>
                </div>
                <div>XXXXX</div>
                <div>XXXXX</div>
                <div>XXXXX</div>
                <div>XXXXX</div>
            </form>
        </div>
    </div>
</div>

Original issue reported on code.google.com by fady.pot...@gmail.com on 13 Jan 2012 at 4:47

Attachments: