Is there an event that fires once all of the rows have completed rendering, with a large table document.ready does not catch it ??
There is a resize() method, is there an event available from this once it is completed ?
I need to set a column's max-height after all of the rows have been rendered, if I try and do in onLoadSuccess() then all of the rows are set to their nominal size 25px. Even with a 250ms delay the rows are still not rendered, but this is a very large datagrid that is populated via JSON and the only reliable method would be some eventh that fies once the resize() has completed.
I have also tried on resize(), but that only fires on panel resize, not on datagrid resize (do layout, size)
$.each($('ul.ulbar.unp'),function(){
var row = $(this).closest('tr.datagrid-row');
$(this).css('max-height',row.height());
})