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
105
Iggrid Resize feature dinamically
posted

I am trying to resize the columns of my iggrid dynamically, after initialize the grid with autogenerate feature.

right now the feature is initialize with the grid, i am able to drag and resize columns, and the corresponding events are fired, but when i do this command for setting the with on an specific column, $('#candidate-list-static').igGrid("resize", 0, 50);, i get this error (Error: cannot call methods on igGridResizing prior to initialization; attempted to call method 'resize').

i do not know what to do next, someone could help with this please?.

Thanks 

Parents
No Data
Reply
  • 16310
    Offline posted

    Hello Juan,

    The "resize" is a method of the igGridResizing widget, so you need to execute is as follows:

    $('#candidate-list-static').igGridResizing("resize", 0, 50);


    Please try it and let me know the result.

Children