WitNt2000
unread,Apr 8, 2012, 11:58:22 PM4/8/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Flexigrid for jQuery
Good day, everybody! I have handler of button in flexgrid. Here it's.
function OpenTrack(com, grid) {
$('.trSelected', grid).each(function(){
var id = $(this).attr('id');
var idTrack = id.substring(id.lastIndexOf('row')+3);
$.get("rwc_ajax.php", { rwc_state: "rwc_track_open", track:
idTrack }, function(){
$(grid).flexReload();
});
});
}
The problem is that it does not send the update request. And so the
information in the table is not updated. What am I doing wrong?