需要单选按钮帮助的 drupal 表单 api
我必须显示一个如下所示的自定义表单
,要么上传图像,要么粘贴图像的 url,
O Radio button to set for image upload
-------Input field for image upload
OR
O Radio button to set image url
--------- input field to get that url
我正在努力处理自定义表单代码是否使用 #type=>radio 或 #type=>radios
如果我使用 type radio 那么有 2单选按钮将创建任一选择都不起作用
如果我使用类型收音机,我如何按照上述设计分离收音机
请指导我这种情况,
Nithish。
i have to show a custom form like below
either upload image or paste a url for the image
O Radio button to set for image upload
-------Input field for image upload
OR
O Radio button to set image url
--------- input field to get that url
im struggling with custom form code whether to use #type=>radio or #type=>radios
if i use type radio then there is 2 radio button will create of either choice wont work
If i use type radios how can i separate the radios as per above design
Please guide me this situation,
Nithish.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我将使用无线电,然后使用 CSS 正确定位图像上传和输入字段。
I would use radios and then position the the image upload and input fields correctly using CSS.