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
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.
i am still having an error, different one but the grid is still not functioning.
(Error: cannot call methods on igGridResizing prior to initialization; attempted to call method 'resize')