Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Calling an action using Ajax URL in Struts 2

I am trying to connect to my action class by using URL as below in Ajax. But its not going into my action class and even it is not showing the selected value by using $("#selectedCountry").val().

function getstates(){           
    alert($("#selectedCountry").val());         
    $.ajax({
      type : "GET",
      url  : "/ThirdTask/selectstate.action",
      dataType : 'text',
      data : "name="+$("#selectedCountry").val(),
      success : function(){
        $('statesdivid').html();
      },
      error : alert("No values found..!!")
    });         
}

My JSP code as follows:

<s:select  name="selectedCountry"  list="{'india','china'}"  onclick="getstates();"/></div>
<div id="statesdivid">
<s:if test="%{#request.selectedstatenames != null}"> 
<s:select list="#request.selectedstatenames" name="selectedState">
</s:select>
</s:if>
</div>

My struts.xml:

<action name="selectstate.action" class="com.thirdtask.actions.SelectAction" method="selectstate">
 <result name="success">selecttag.jsp</result> 
</action>
like image 767
kumarc Avatar asked Oct 20 '22 18:10

kumarc


1 Answers

To map an action to the method you should do something like

<action name="selectstate" class="com.thirdtask.actions.SelectAction" method="selectstate">
  <result>/selecttag.jsp</result> 
</action>

action name should be without action extension and result by default is named "success", the path to JSP should be absolute here.

Calling ajax

$.ajax({
    type : "GET",
    url  : "<s:url action='selectstate'/>",
    dataType : 'text/javascript',
    data : {'name' : $("#selectedCountry").text()},
    success : function(result){
      if (result != null && result.length > 0){
        $("statesdivid").html(result);
      }
    },
    error : function(xhr, errmsg) {alert("No values found..!!");}
});         
like image 182
Roman C Avatar answered Oct 23 '22 10:10

Roman C