blob: 10397bfae9f795870de0da21352f13361b4fe284 [file] [log] [blame]
<!--
#* Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.*#
-->
$redirectLink
<div id="result" class="infoMsg">
#set ($flash = "")
#set ($flash = $session.flash)
#if ($flash != "")
$flash
#end
</div>
Clicking the link above will send an Ajax request to the server which returns
a url to redirect to. The url is returned from the server in a custom response
header called <tt>'REDIRECT_URL'</tt>.
<p/>
Since Ajax does not support redirects, JavaScript is used to simulate a redirect
by setting the value of <tt>window.location</tt> to the redirect url.
<script type="text/javascript" src="$context/assets/js/jquery-1.4.2.js"></script>
<script type="text/javascript">
// This example uses jQuery for making Ajax requests:
// http://api.jquery.com/jQuery.get/
// http://api.jquery.com/jQuery.ajax/
// Register a function that is invoked as soon as the DOM is loaded
jQuery(document).ready(function() {
var resultElm = jQuery("#result")
// Hide the result div initially if it contains no content
if (jQuery.trim(resultElm.text()).length == 0) {
resultElm.css("display", "none");
} else {
resultElm.css("display", "block");
}
// Register a 'click' handler that makes an Ajax request
jQuery("#redirectLinkId").click(function(event){
// Make ajax request
redirectLinkClicked();
// Prevent the default browser behavior of navigating to the link
return false;
})
})
function redirectLinkClicked() {
var link = jQuery('#redirectLinkId');
var extraData = link.attr('id') + '=1';
var url = link.attr('href');
jQuery.get(url, extraData, function(data, textStatus, xhr) {
// Retrieve the url to redirect from the Ajax response header
var redirect_url = xhr.getResponseHeader('REDIRECT_URL');
// Perform the redirect
window.location = redirect_url;
});
}
</script>