[jQuery] Flexigrid problem with IE
Hi All,
I'm having an issue with Flexigrid displaying both xml and json
outputs from a php script in IE only.
I am using tabs to load the Flexigrid into a div when the tab label is
clicked. The column labels show up and you can click them, but the
actual data that loads into the window does not show up, even though
the "Displaying 1 to 15 of 229 items" shows correctly.
Here's my click event driving the tab --
$('#invt_report').click(function() {
$("#invt_rpt_output").flexigrid({
url: 'invt_id_rpt_json.php',
dataType: 'json',
colModel : [
{display: 'Models', name : 'invt_id', width : 60, sortable : true,
align: 'center'},
{display: 'Short Description', name : 'short_desc', width : 280,
sortable : true, align: 'left'},
{display: 'Quantity Available', name : 'qty_avail', width : 120,
sortable : true, align: 'right'},
{display: 'Lead Time (Weeks)', name : 'lead_time', width : 130,
sortable : true, align: 'left'},
{display: 'List Price', name : 'list_price', width : 80,
sortable : true, align: 'right'},
{display: 'Your Price', name : 'cust_price', width : 80,
sortable : true, align: 'right'}
],
searchitems : [
{display: 'Models', name : 'invt_id', isdefault: true},
{display: 'Short Description', name : 'short_desc'}
],
sortname: "invt_id",
sortorder: "asc",
usepager: true,
title: 'Inventory Report',
useRp: true,
rp: 15,
showTableToggleBtn: false,
height: 200
});
});
I've tried both xml and json with the same results. Eveything works
fine in Firefox and Safari and Opera. Please, help!
Regards,
-Lance