Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
255
iGGrid features exception
posted

Hi,


I am using igGrid and whenever I am trying to add "column moving" feature, it is throwing following exception.

0x800a138f - JavaScript runtime error: Unable to get property 'left' of undefined or null reference

If I don't add this feature, the groupBy doesn't work for some reason. Can you please tell me what exactly is the problem ?

Below is my feature set looks like

features: [

{

name: "Summaries",

showSummariesButton: false,

showDropDownButton: false,

compactRenderingMode: false,

resultTemplate: "{1}",

columnSettings: [

{ columnKey: "A", allowSummaries: false },

{ columnKey: "B", allowSummaries: false },

{ columnKey: "C", allowSummaries: false },

{

columnKey: "D", allowSummaries: true, summaryOperands: [

{ type: "sum" }

]

},

{

columnKey: "E", allowSummaries: false, summaryOperands: [

{ type: "sum" }

]

},

{

columnKey: "F", allowSummaries: true, summaryOperands: [

{ type: "sum" }

]

}

]

},

{

name: "Filtering",

type: "local",

mode: "advanced",

filterDialogContainment: "window",

},

{

name: "Paging",

type: "local",

pageSize: 10

},

{

name: "Sorting",

type: "local",

},

{

name: 'Selection',

mode: 'row',

multipleSelection: false,

activation: true

},

{

name: "Hiding",

columnChooserWidth: 300,

columnChooserHeight: 300,

},

{

name: "Resizing"

},

 {

  name: "ColumnMoving",

  },

{

name: 'GroupBy',

type: "local",

groupByDialogContainment: "window",

modalDialogHeight: 500,

groupByLabelWidth: 305,

}

],

After adding column moving, I see two column rows for the grid and an exception. Please have a look and let me know.

Parents
  • 255
    posted

    One more thing, This grid is inside md-dialog and maybe angularJS / infragistics aren't allowing opening column Group By window if a pop up window is already open ? Just a thought.

Reply Children
No Data