Pagination issue
Pagination issue
rainolf
Posts: 56Questions: 6Answers: 0
Hi,
i'm working on a simple ajax request when clicked on a link in Data Table.
like so:
{
"sWidth": "2%",
"mData": "extension",
className: 'td-center',
"mRender": function ( data, type, full ) {
return '<a class=link href="#" title="Click2Call '+data+'">' + data + '</a>';
}
},
and the ajax request is:
$('.link').on('click',function () {
var number = $(this).text();
$.ajax({
type: 'POST',
async: false,
url: "click2call/call.php",
data: {number:number},
success: function(){ tempAlert("Call in Progress...",5000);},
error: function(){ alert("An error has occured!!!");}
});
} );
function tempAlert(msg,duration)
{
var el = document.createElement("div");
el.setAttribute("style","color: gray; font: 1em Calibri, Sans-Serif;position:absolute;top:30%;left:50%;background-color:white;");
el.innerHTML = msg;
setTimeout(function(){
el.parentNode.removeChild(el);
},duration);
document.body.appendChild(el);
}
});
It seems that in the first view all is working well while when navigate across other pages (with pagination) nothing happens.
The ajax request are not made.
Do u notice any particular behavior?
Thank you
This discussion has been closed.
Replies
Top FAQ :-)
Allan
Thank you Allan,
however this link:
http://datatables.net/examples/advanced_init/events_live.html
was exactly my starting point but in that case you are searching for the first column(var name = $('td', this).eq(0).text();).
My needs is to get the value of the third column (for example) but if i hide it(with show/hide columns) the script will gets me a wrong value.
That's why i've put a class and make a selector to find class=link.
Do u think could i use a better way?
The problem is that you aren't using a delegated event:
should be:
Allan
really cool...
thank you