如何在vtiger crm中添加州名称下拉框
我有一个表单,我必须添加带有下拉菜单的州名称字段,以便用户可以从该选择框中选择他们想要的州名称。
我该怎么做?
I have a form and I have to add state name field with a drop down so the user can select name of the state they want from that select box.
How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
假设你有一个像mysql这样的数据库。
state
(state_id
,state_name
,state_abbr
)state
中获取状态code> 表(编写一个函数来获取状态)使用 php 脚本迭代选择框的选项,例如:
Assuming you have a databse like mysql.
state
(state_id
,state_name
,state_abbr
)state
table (write a function to fetch states)iterate in your option of the select box using php script, for example:
您可以使用 vtlib 库来实现这一点。
这就是我们如何使用 vtlib 在 Accounts 模块中创建状态名称下拉框,然后
在该数组中添加状态列表的其余部分。
希望这有帮助。
You can use vtlib library for that.
This how we create a state name dropdown Box in Accounts module using vtlib
Add the rest of state list in that array.
Hope this helps.
只需转到管理面板并添加一个选项列表即可。非常简单。
Just go to admin panel and add a picklist. Its very simple.
假设你有一个像mysql这样的数据库。
使用 php 脚本迭代选择框的选项
示例:
Assuming you have a databse like mysql.
iterate in your option of the select box using php script
example: