Welcome Guest, Not a member yet? Register   Sign In
DropDown not showing
#3

[eluser]Unknown[/eluser]
Hi,

With the help of a friend, I managed to solve it. Below are the codes:

View:
Code:
<?php

foreach($TipoElemento as $TipoElemento1)
{
$ListaDropTipoElemento[$TipoElemento1] = $TipoElemento1;
}
foreach($Data as $Data1)
{
$ListaDropData[$Data1] = $Data1;
}
foreach($NomeElemento as $NomeElemento1)
{
$ListaDropNomeElemento[$NomeElemento1] = $NomeElemento1;
}

echo form_open('teste');
echo form_dropdown('TesteData',$ListaDropData,null);
echo form_dropdown('TesteTipoElemento',$ListaDropTipoElemento,null);
echo form_dropdown('TesteNomeElemento',$ListaDropNomeElemento,null);
echo form_close();

HTML Output:

Code:
<!DOCTYPE html>
&lt;html lang="en"&gt;
&lt;head&gt;

&lt;/head&gt;
&lt;body&gt;
<h1>Welcome to CodeIgniter!</h1>

<div id="container">
&lt;form action="localhost/index.php/teste" method="post" accept-charset="utf-8"&gt;&lt;select name="TesteData">
<option value="2012-02-17">2012-02-17</option>
<option value="2012-02-24">2012-02-24</option>
</select><select name="TesteTipoElemento">
<option value="HLR">HLR</option>
<option value="MSC">MSC</option>
</select><select name="TesteNomeElemento">
<option value="HRJO02">HRJO02</option>
<option value="HRJO01">HRJO01</option>

<option value="HBHE01">HBHE01</option>
<option value="HRJO03">HRJO03</option>
<option value="HSPO02">HSPO02</option>
<option value="HSNE03">HSNE03</option>
<option value="HSPO03">HSPO03</option>
<option value="HSPO04">HSPO04</option>
<option value="HSNE02">HSNE02</option>
<option value="HSPO01">HSPO01</option>
<option value="HSNE01">HSNE01</option>

</select>&lt;/form&gt;&lt;/div>
<div id="container">
</div>
<div id="container">
<p.footer>Rodape</p.footer>
</div>
&lt;/body&gt;
&lt;/html&gt;

Thanks!!


Messages In This Thread
DropDown not showing - by El Forum - 02-24-2012, 05:08 AM
DropDown not showing - by El Forum - 02-24-2012, 05:29 AM
DropDown not showing - by El Forum - 02-24-2012, 06:05 AM



Theme © iAndrew 2016 - Forum software by © MyBB