You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm calling ajax request and it's returning the fixedHeaderTable with data and everything. on certain pages it extends past the right side of the jquery tab. I have tried to adjusting the width and that gives me more horizontal scrolling. this is the code that generates what is being return.
this is the ajax call:
$.ajax({
url: 'ajax_dash.php?action=emp_stats_data&beg='+begining+'&end='+end,
type: "GET",
success: function(feedback){
$('#cont').html('');
$('#cont').html(feedback);
}
});
this is what is happening at the call:
I'm calling ajax request and it's returning the fixedHeaderTable with data and everything. on certain pages it extends past the right side of the jquery tab. I have tried to adjusting the width and that gives me more horizontal scrolling. this is the code that generates what is being return.
<script> $(function() { $( "#begining" ).datepicker({ dateFormat: 'yy-mm-dd' }); $( "#end" ).datepicker({ dateFormat: 'yy-mm-dd' }); $('#instats').fixedHeaderTable({ width: '100%', height: '250', footer: false, cloneHeadToFoot: false, altClass: 'odd', themeClass: 'fancyTable',autoShow: false }); $('#instats').fixedHeaderTable('show', 700); //$( "#add_remid" ).button(); }); </script>this is the ajax call:
$.ajax({
url: 'ajax_dash.php?action=emp_stats_data&beg='+begining+'&end='+end,
type: "GET",
success: function(feedback){
$('#cont').html('');
$('#cont').html(feedback);
}
});
this is what is happening at the call:
The text was updated successfully, but these errors were encountered: