I have searched for this kind of question before posting. Most of the answers found are not related to struts2 jQuery grid. Here is my situation:
- I have successfully populated my dropdown boxes dynamically on initial load.
- Now I want to reload one dropdown box based on the selection from the other dropdown box.
- I am looking for a built in solution using the attributes/topics but I couldn't find one.
Can anyone share any solution to this?
Here is my code:
<sjg:gridColumn
name="aut"
index="aut"
title="AUT"
width="300"
sortable="true"
editable="true"
edittype="select"
surl="%{selectautsurl}"
editoptions="{ dataUrl : '%{selectautsurl}' }"
/>
<sjg:gridColumn
name="eforms"
index="eforms"
title="Page/Eform"
width="300"
sortable="true"
editable="true"
edittype="select"
surl="%{selecteformsurl}"
editoptions="{ dataUrl : '%{selecteformsurl}' }"
/>
Thank you very much for your help.