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
925
igGrid Selection - Error -
posted

Hi,

 

I am trying to do something very simple and enable single cell selection within an igGrid control. I am an unable to do this however as if I include the features attribute when initialising the grid I get the following error:

Cannot call method '_injectGrid' of undefined

I am using jQuery 1.8.2, but have tried against 1.7.2 and the same error persists. In the loader I am simply loading resources for igGrid.Selection. JS below:

$(tableElem).igGrid({
        dataSource: pivotData,
        height: paneHeight + 'px',
        width: paneWidth + 'px',
        fixedHeaders: false,
        defaultColumnWidth: '100px',
        autoFormat: true,
        theme: "metro",
        features: [{
            name: 'Selection',
            mode: 'cell'
        }]
    });

 

Any help would be appreciated.

 

Regards,

Chris

Parents
  • 925
    posted

    Hi,

    I have got slightly further with this now. By adding a unique id to the table that holds the igGrid the grid now renders. However a loading indicator is constantly displayed and the following error is thrown:

    Error: Syntax error, unrecognized expression: tbody > tr > td:[data-skip=true]

    Any ideas?

     

    Regards,

    Chris

Reply Children