Skip to content

Replies

0
Jeffrey
Jeffrey answered on Sep 5, 2017 6:43 PM

The issue I found is only with date columns, if we make allowFiltering: false on date columns on grid then Grid renders fine else Grid shows issue in rendering.

weird issue, could someone please suggest why this is happening

0
Jeffrey
Jeffrey answered on Nov 9, 2016 7:33 PM

Added those files but still getting following error

infragistics.excel.js:88 Uncaught TypeError: $$t.$fw.getBox is not a function

0
Jeffrey
Jeffrey answered on Sep 19, 2016 7:01 PM

Got further with it…now new errors..

infragistics.excel.js:88 Uncaught TypeError: $$t.$fw.getBox is not a function
infragistics.excel.js:30 Uncaught TypeError: $$t.$cg.c is not a function

0
Jeffrey
Jeffrey answered on Sep 19, 2016 6:00 PM

We are loading infragistics.core.js, infragistics.dv.js, and infragistics.lob.js in same order

I changed the order to be infragistics.loader.js, infragistics.core.js, infragistics.dv.js, and infragistics.lob.js, infragistics.document.core.js, infragistics.gridexcelexporter.js

Is this order correct? All files required? 

I am now getting an error Uncaught TypeError: Cannot read property 'Workbook' of undefined



0
Jeffrey
Jeffrey answered on Sep 14, 2016 10:11 PM

1) I am using version 16.1.20161.1009

2) Upgraded from 14.2.20142.2140

Code:

<input type="button" id="exportButton" value="Export" />

$("#exportButton").on("click", function () { $.ig.GridExcelExporter.exportGrid($("#grid"), { fileName: "igGrid" }); });

$("#grid").igGrid({

autoGenerateColumns:false,dataSourceType:"json",dataSource:[],enableUTCDates:true,height:amp.grid.setHeight("holdings-detail-grid"),width:"100%",
rowVirtualization:true,virtualizationMode:"continuous",//virtualizationMouseWheelStep:150, //avgRowHeight: 20,
columns: holdingsDetailGridColumns, autofitLastColumn: false,
features: [
{
name:"Sorting",
type: "remote",
persist: true,
columnSorting:function(evt,ui){ return amp.gridToolbar.sort("holdings-detail-grid", ui.columnKey, ui.direction);}
}});