I've been searching and verifying the official documentation of struts2-jquery-plugin about any way which would help me to hide or show an element of the form according to a condition/boolean. To be more exact, I have a double select. By default, the second select should be in the beginning hidden. In the first select I query the database and get the availabe languages from LANGUAGE table. There might be that some of the languages have no Frameworks stocked in my database. So, in case of no available Frameworks to the selected Language, I need to set the "Framework select" to hidden. Thank you a lot!
My form looks like this :
<s:form id="formSelectReload" action="echo" theme="simple" cssClass="yform">
<fieldset>
<legend>AJAX Form</legend>
<div class="type-text">
<label for="language">Language: </label>
<s:url id="remoteurl" action="jsonsample"/>
<sj:select
href="%{remoteurl}"
id="language"
onChangeTopics="reloadsecondlist"
name="language"
list="languageObjList"
listKey="myKey"
listValue="myValue"
emptyOption="true"
headerKey="-1"
headerValue="Please Select a Language"
/>
</div>
<div class="type-text">
<label for="echo">Framework: </label>
<s:url id="remoteurl" action="jsonsample"/>
<sj:select
href="%{remoteurl}"
id="selectWithReloadTopic"
formIds="formSelectReload"
reloadTopics="reloadsecondlist"
name="echo"
list="reloadList"
emptyOption="true"
headerKey="-1"
headerValue="Please Select a Framework"
/>
</div>
<div class="type-button">
<sj:submit
id="submitFormSelectReload"
targets="result"
value="AJAX Submit"
indicator="indicator"
button="true"
/>
<img id="indicator"
src="images/indicator.gif"
alt="Loading..."
style="display:none"
/>
</div>
</fieldset>
</s:form>
Update
I hope there is a functionality which make things easier in struts2-jquery-plugin, because I have no previous knowledge at all in JQuery. But I'm trying to learn some by the moment. Here I tried to :
1) Add this attribute to the first select :
onchange="Verify(this.value)"
2) Define the Javascript function Verify :
function Verify(value){
if ( value=="4" ){
$('#selectWithReloadTopic').hide().body(); // or $('#selectWithReloadTopic').hide();//
}
else{
$('#selectWithReloadTopic').show().body();
}
}
Problem : when MyKey==4, the dropdown of the select disappear, but the label doesnt disappear..
So I tried to make the second sj:select inside of another div id="parentDiv" and try to hide that div and its children like this :
$('#parentDiv').children().hide().body();
But the last try didn't have any effect at all.. nothing hidden...
Moreover, I need to test the availability of a framework, and this require a database connection.. So should I query the database in the JQuery function?
$.subscribeto topics, although I'd have to spend some time to know what else was involved. – Dave Newton Aug 10 '12 at 2:07