Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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" />

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},

Why list is not populating instead whole Dailog is filled with above data. Any help would be great.

share|improve this question

1 Answer

up vote 1 down vote accepted

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"
share|improve this answer
now its working fine. – arvin_codeHunk Jan 22 at 12:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.