Hello,
I have two questions about igGrid:
Thank You!
Randy
Hi Randy,
I created a small test page with igGrid in a dialog window. The scrollbar is displayed as expected. Please have a look and try to modify the sample to reproduce the issue. Then upload it back here.
Thank you.
Hi Nikolay,
Thank you for checking in.
I am still not able to get scrollbars in the grid even after setting the height and showHeaders options. There is a document attached with the code and a screen shot.
The grid is inside of a jQuery dialog, could that have anything to do with the problem?
There is an error when showing the dialog, which appears to be connected to the grid template in some way. the error is Uncaught TypeError: Cannot call method 'replace' of undefined
So far I cannot figure out why the error occurs but the dialog does display. I have to click the link twice for the dialog to display, though.
Thanks, Randy
I'm just checking if you have managed to solve your issue.
Hello Randy,
In order to set the grid to scroll its content you should define height option. The fixedHeaders option is true by default so it's not mandatory.
Example:
$().igGrid({
height: "400px"
});
Best regards,Martin PavlovInfragistics, Inc.
You should set the fixedHeaders property of the grid to true: $('#grid1').igGrid('option', 'fixedHeaders', true);
This is the default value and as you can see the headers are fixed in all samples in our samples browser:
http://es.infragistics.com/products/jquery/sample/grid/binding-to-wcf-service
Please feel free to contact me if you have any further questions.