EasyUI Forum
May 03, 2024, 04:14:42 PM *
Welcome, Guest. Please login or register.

Login with username, password and session length
News:
 
   Home   Help Search Login Register  
Pages: [1]
  Print  
Author Topic: Select Error (combobox)  (Read 5471 times)
claudgin
Newbie
*
Posts: 1


View Profile
« on: June 08, 2014, 04:38:31 AM »

Hello,
I have a problem when you edit one line of a datagrid the second with box gives me an empty value the first loads the value of DB correct
source code:
Code:
<?php
 
<form id="fm" method="post" novalidate>
   <
div class="fitem">
              <
label>Provincia:</label>
            <
select class="easyui-combobox"  size="1" name="City" id="City">
            <
option value="Choose one">Choose one</option>
            <?
php
              $db 
= new MySQL();  
              
$db->open();
              
$consulta $db->consulta("SELECT * FROM cv_city");
              if (
$row21 $db->fetch_array($consulta)) {
              do {
              echo 
              
'<option value="'.$row21['city'].'">'.$row21['city'].'</option>';
              }while(
$row21 $db->fetch_array($consulta));
              }
   $db->close();
              
?>

          </select>
  </div>
          <div class="fitem">
            <label>Municipio:</label>

         <select class="easyui-combobox"  size="1" name=" town " id=" town ">
                      <option value="Choose one">Choose one</option>';
          </select>
  </div>
      </form>
          <div id="dlg-buttons">
<a href="#" class="easyui-linkbutton" iconCls="icon-ok" onclick="saveUser()">Guardar</a>
<a href="#" class="easyui-linkbutton" iconCls="icon-cancel" onclick="javascript:$('#dlg').dialog('close')">Cancelar</a>
</div>
?>

Where is the error?
Thanks in advance greetings
Logged
stworthy
Administrator
Hero Member
*****
Posts: 3581


View Profile Email
« Reply #1 on: June 08, 2014, 07:28:11 AM »

It seams that your combobox components can not be properly created. You may need to review your code carefully.
Logged
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!