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
140
iggrid page size drop down list showed and disappeared, it cannot be selected on IE10 and IE11
posted

The iggrid shows up correctly. But it cannot be changed page size because the drop down list showed after mouse click and disappeared when mouse move to select.

I am using iggrid 13.1.20131.2217.

My feature code


.Features( features =>
{
features.Sorting().Type(OpType.Local);
features.Paging().Type(OpType.Local).PageSize(10).PageSizeDropDownLocation("inpager");
features.Selection().Mode(SelectionMode.Row);
features.Filtering();

})

IE shows error when mouse move over button and text box of page size change:

SCRIPT28: Out of stack space
File: infragistics.ui.editors.js, Line: 3307, Column: 13

Thanks in advance
Wilson

Parents
No Data
Reply
  • 23953
    Verified Answer
    Offline posted

    Hi Wilson,

    I think I found the problem. You've referenced the igEditors script two times. This causes the "Out of stack space" error to appear. Usually this happens when you use igLoader and you also reference

    infragistics.core.js + infragistics.lob.js in your page. This way the igLoader will load infragistics.ui.editors.js from one side, but on the other side infragistics.lob.js also contains it.

    In order to fix this problem you have to remove either the igLoader or the reference to infragistics.lob.js and infragistics.core.js.

     

    Hope this helps,
    Martin Pavlov
    Infragistics, Inc.

Children
No Data