Populate dropdown list inside Dialog using Struts2 jQuery Plugin(使用 Struts2 jQuery 插件填充对话框内的下拉列表)
问题描述
我有一个对话框,我必须从数据库中填充一个下拉列表.我正在使用 struts2-juery-plugins 来实现对话框.此对话框在某些事件上打开.这就是我创建 Dialog 的方式.
I have a Dialog in which I have to populate a dropdown list from database.I am using struts2-juery-plugins to implement Dialog.This Dialog is open on some event. This is how I create Dialog .
<sj:dialog
id="mybuttondialog"
href="%{fillUser}"
buttons="{
'Assign':function() { approoveButton(); },
'Deny':function() { denyButton(); }
}"
autoOpen="false"
modal="true"
title="Assign-Task"
closeTopics="closeThisDialog">
<label>User</label>
<select id="userCombo" name="userCombo">
<s:iterator value="userList">
<option><s:property value="helper_name" /></option>
</s:iterator>
</select>
</sj:dialog>
我正在调用一个动作来使用
I am calling an action to fill dropdown list using
<s:url var="fillUser" action="getAllUsers" />
但列表未填充,Dialog 被 jsonData 填充,如下所示
But list is not populating and Dialog got filled with jsonData as following
{"helpDeskUsers":"success","userList":
[{"departments":null,"helper_name":"arvin","helper_value":null,"user_level":null},
{"departments":null,"helper_name":"anand","helper_value":null,"user_level":null},
{"departments":null,"helper_name":"Nehal","helper_value":null,"user_level":null},
为什么列表没有填充,而是整个 Dailog 都填充了上述数据.任何帮助都会很棒.
Why list is not populating instead whole Dailog is filled with above data. Any help would be great.
推荐答案
<select
标签不能用于 json 列表,你应该使用类似
The <select
tag will not work with json list, you should use something like
<s:url var="fillUser" action="getAllUsers" />
<sj:select
id="userjson"
name="users"
href="%{fillUser}"
list="userList"
listValue="helper_name"
listKey="helper_name"
这篇关于使用 Struts2 jQuery 插件填充对话框内的下拉列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 Struts2 jQuery 插件填充对话框内的下拉列表
基础教程推荐
- 降序排序:Java Map 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01