Hello,
I'm wondering which is the right way to resize a client-side grid, in a javascript.
The grid has been initially sized to display less lines than total items, so a vertical scrollbar appears.
I'd want to trigger a javascript increasing grid's height,
avoiding page postback to rebuild the whole grid.
I tried this simple jquery script but it didn't work:
Code: JavaScript
$('#' + gridClientId).height(newHeight);
The effect that the above code seems to produce, is to widen the height of a div element containing the actual grid, but not the grid itself.
I hope someone could help me.
Thanks.
Raf