I ended up working around this using a combination of jQuery PubSub, UI Layout's accessor methods, and SlickGrid's resizeCanvas() method. It seems to work pretty well.
Note: My project was already using pubsub, and I load in my modules using RequireJS.
So, in my grid module file, I subscribe a method to receive the new innerHeight of the pane it lives in, which saves it to a local variable, then calls my resize(); function:
$.subscribe("units/set_grid_height", function (new_height) {
grid_opts.height = new_height;
resize();
});
// ...
// grid = the jQuery element that represents the SlickGrid
// slick = the instantiated slickgrid
function resize() {
grid.css('height', grid_opts.height);
slick.resizeCanvas();
}
Then, in my init js file (where the layout is defined), I set up the correct publishing for the initial state and each time the center pane changes:
layout = $('body').layout({
center: {
onresize: function (name, el, state, opts, layout_name) {
$.publish("units/set_grid_height", [state.innerHeight]);
}
}
});
$.publish("units/set_grid_height", [layout.state.center.innerHeight]);
That seems to do exactly what I want. I know it's not a general solution, but it doesn't look like SlickGrid can do all of this on it's own.