Hasinur Rahaman

Greenhorn
+ Follow
since Mar 20, 2012
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Hasinur Rahaman

Hi
I am using <i18n> tag. I am showing the pages in three different languages {depending on the user choice, user may click on the button of any of the specific language} say, English, Tamil, and Sinhala.
The translation is working very fine
In some of the pages I have used ajax call to append another jsp inside the mother jsp and have used <s:div> tag and jsp: nclude tag.
The pages are working fine . the only problem is that the included page{the child jsp} is not translating to any locale language.
A birdeye view of the code:-
***** the jquery****************
urlStr=”specified path of the url”
$jq14_enquiry.ajax({
url: urlStr,
async: false,
cache : false,
success : function(responseText) {
$jq14_enquiry("#eDetailDiv").html(responseText);
}

});
****************************jsp***************

I have used <s:div id="enquiryDetailDiv"><jsp:include page="rEDetail.jsp"></jsp:include></s:div>
12 years ago