Resizable: alsoResiz and grid option

Resizable: alsoResiz and grid option


Hello,
i'm playing around with resizables in jqueryui 1.7.1.
I had a look at the synchronous resize demo and modified it like this:
$(function() {
$("#resizable").resizable({
alsoResize: '#also',
grid: [50,50]
});
$("#also").resizable();
});
I noticed that the first resizable snaps to the grid, but the second
does not, it resizes smooth.
I'd like the second resizable also to snap to the grid.
I tried adding grid[50,50] to the second resizable. When i onli resize
the second resizable, it snaps to the grid, when i resize the first,
it doesn't.
Is there a way to have both resizable snap to the grid when i resize
the first resizable?
Thanks for help in advance,
Dirk