问问题
355 次
2 回答
0
我没有找到好的解决方案,但我在对话框中成功使用了一个表格:
<div id="newarticle-form" title="Création nouvel article">
<form action="http://localhost/ravioles/administration/articleAjout" method="post" accept-charset="utf-8" id="newarticleform"> <fieldset>
<table><tr><td>
<label for="code" class="label-class">Code article</label>
<input type="text" name="code" id="code" size="6" maxlength="6" class="text input-class" />
</td></tr><tr><td>
<label for="validite" class="label-class">Date de validité</label>
<input type="text" name="validite" id="validite" size="10" maxlength="10" class="text input-class" />
</td></tr><tr><td>
<label for="libelle" class="label-class">Libellé</label>
<input type="text" name="libelle" id="libelle" size="50" maxlength="100" class="text input-class" />
</td></tr><tr><td>
<label for="poids" class="label-class">Poids (g)</label>
<input type="text" name="poids" id="poids" value="" size="5" maxlength="5" class="text input-class" />
</td></tr><tr><td>
<label for="pu" class="label-class">Prix unitaire</label>
<input type="text" name="pu" id="pu" value="" size="10" maxlength="10" class="text input-class" />
</td></tr><tr><td>
<label for="categorie" class="label-class">Catégorie</label>
<select id="categorie" >
<option value="00001">RAVIOLES</option>
<option value="00002">PATES FRAICHES DU ROYAN</option>
<option value="00003">PATES FARCIES DU ROYAN</option>
<option value="00004">QUENELLES</option>
<option value="00005">TRAITEUR</option>
<option value="00006">SAVEURS EXPRESS</option>
<option value="00007">CONSERVES ET SAUCES</option>
</select><br>
</td></tr></table>
</fieldset>
</form>
<p class="validateTips"></p>
</div>
谢谢 !^_^
于 2013-03-20T05:33:23.830 回答
0
我有完全相同的问题。<hr />
奇怪的是,当添加一个或<select>
元素时,对话框会向上移动。将元素包装在表格中解决了这个问题。
<select>...</select>
<hr />
<more content>
变成了
<table>
<tr>
<td><select>...</select></td>
</tr>
<tr>
<td><more content></td>
</tr>
</table>
祝其他找到这个的人好运!博
于 2013-04-19T16:48:38.653 回答