一个控件如何使用表单 API 选择列表?
我知道这有点新问题,但我已经到了最后期限,而 3 天的 Drupal 经验根本无法解决这个问题...
$form['gender'] = array('#type' => 'select' , '#title' => t('性别: *'), '#options' => array(t('男'), t('女')), '#required' => TRUE, '#weight' => 2,);
如何为选定值分配值?例如男性-> 'm' 和女-> 'f'。另外,我如何为选择框提供默认标题“请选择性别...”
谢谢大家
I know this is somewhat of a newb question but I am running into a deadline and 3 days of Drupal experience will just not cut it...
$form['gender'] = array('#type' => 'select', '#title' => t('Gender: *'), '#options' => array(t('Male'), t('Female')), '#required' => TRUE, '#weight' => 2, );
How do I assign values to select values ? For example Male -> 'm' and Female-> 'f'. Also how do I give the select box a default caption "please select gender..."
Thanks guys
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
在您的验证函数中(表单提交后),您应该确保用户选择的值不是“”。
Try this:
In your validation function (after the form submits) you should make sure the user picks a value that isn't "".