I have an application in which I am using tiles, but I am using ajax request too to get the response of type json and want to display it through tiles. Can I set both result-types in my struts.xml.
I have tried this but failed...
<action name="*CampData" method="{1}" class="com.contaque.monitor.CampAction">
<result name="get" type="tiles+json">getCampData</result>
</action>
is there any solution to this???