Populate dropdown list inside Dialog using Struts2 jQuery Plugin

前端 未结 1 1826
别那么骄傲
别那么骄傲 2021-01-15 06:27

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 ho

相关标签:
1条回答
  • 2021-01-15 07:09

    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"
    
    0 讨论(0)
提交回复
热议问题