2011-03-15 23:51:43 -07:00
|
|
|
$(function() {
|
|
|
|
|
|
2011-03-16 18:48:27 -07:00
|
|
|
$('#show').hide();
|
2011-07-14 19:56:08 -07:00
|
|
|
|
2011-03-20 19:26:07 -07:00
|
|
|
$("#ajaxLoadEnquiry").hide();
|
2011-03-20 21:31:00 -07:00
|
|
|
|
2011-03-15 23:51:43 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var userID = $('#userID').text();
|
|
|
|
|
|
2011-07-14 19:20:09 -07:00
|
|
|
|
|
|
|
|
var enquiriesURL = '/enquiries/view_user_enquiries/'+userID;
|
|
|
|
|
|
|
|
|
|
getPage(enquiriesURL);
|
|
|
|
|
|
|
|
|
|
|
2011-07-14 20:12:06 -07:00
|
|
|
$("div.paging > a, div.paging > span > a, th.paginatorSort > a").live('click',function() {
|
2011-07-14 19:20:09 -07:00
|
|
|
destination = $(this).attr('href');
|
|
|
|
|
getPage(destination);
|
|
|
|
|
return false;
|
2011-03-15 23:51:43 -07:00
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#hide').click(function() {
|
|
|
|
|
$(this).hide();
|
|
|
|
|
$('#show').show();
|
|
|
|
|
$('#enquiryTable').slideUp('fast');
|
2011-03-16 18:48:27 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$('#show').click(function() {
|
|
|
|
|
$(this).hide();
|
|
|
|
|
$('#hide').show();
|
2011-07-14 19:56:08 -07:00
|
|
|
$('#enquiryTable').slideDown('fast');
|
2011-03-15 23:51:43 -07:00
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
2011-07-14 19:20:09 -07:00
|
|
|
function getPage(url) {
|
2011-07-14 19:56:08 -07:00
|
|
|
|
2011-07-14 19:20:09 -07:00
|
|
|
$.get(url, function(data) {
|
|
|
|
|
$('#enquiryTable').html(data);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-15 23:51:43 -07:00
|
|
|
});
|