
Hi all,
I have two form dropdown selectors in an PHP file. They both collect their data from a mysql query. When a selection is made in the first dropdown then the second one appears. They have both same code for it. Can someone help me on finding out what the problem is here? There is no error message or anything. they work functionally. Only as you can see in the screenshot, the style/mark-up is different.
$html.="<form>
<select name='type' id='type' method='POST' autocomplete='off'>
";
if( $_GET['type'] )
$selected_type = $wpdb->escape($_GET['type']);
foreach($type as $typ)
{
if($typ['type']==$selected_type)
$selected = ' selected ';
else
$selected = ' ';
$typ['type'] = trim( $typ['type'] );
if( !$typ['type'] )
continue;
$html.="<option $selected value='{$typ['type']}'>{$typ['type']} </option>\r\n";
}
$html.="
</select>
<br/>
<input type='submit' value='Go'>
</form>";
if($selected_type)
{
global $wpdb;
$products = get_products();
$html.= get_cluetip_js();
$html.="<form>
<input type='hidden' name='type' value='".$_GET['type']."'>
<select name='product' id='product' method='POST' autocomplete='off'>";
if( $_GET['product'] )
$selected_product = $wpdb->escape($_GET['product']);
foreach($products as $prod)
{
if($prod['ID']==$selected_product)
$selected = ' selected ';
else
$selected = ' ';
$prod['Title'] = trim( $prod['Title'] );
$prod['Cat'] = trim( $prod['Cat'] );
if( !$prod['Title'] || !$prod['Cat'] )
continue;
$html.="<option $selected value='{$prod['ID']}'>{$prod['Title']} - ({$prod['Cat']})</option>\r\n";
}
$html.="
</select>
<br/><input type='submit' value='Go'>
</form>";
edit:
I have fixed the problem. But now i miss some functionallity;
At the end of the script i have a pluging that allows people to enter a search term in the second drop down.
$html.= '<script type="text/javascript">
$(function () {
$("#product").ufd({log:true});
});
</script>
When i remove the .ufd the select is looking good again.
When i add it, i see in developer mode from Google Chrome that it is formatting using the ufd css files located in the root (site was developed by external coder).
selectelement overflow is being clipped (css-tricks.com/the-css-overflow-property). Do you have any CSS rules effecting theselectelements? – Graeme Dec 24 '12 at 12:24