Hi Vikas,
I think you would need to put your applet inside a block panel, set the applet height to 100% and then resize the block panel with a script when the window is loaded or resized.
For example, your script block value could be something like this:
function block_resize() {
var blockId = "#{caf:cid('blockPanel')}";
var block = $(blockId);
var blockTop = Position.absoluteOffset(block)[1];
var windowHeight = Position.windowDimensions().y;
var footerHeight = $("footer").offsetHeight;
var extraPadding = 10; //add extra padding to get rid of vertical scrollbar
var height = windowHeight - blockTop - footerHeight - extraPadding;
block.setStyle({
height: height + 'px'
});
}
Event.observe(window, "load", block_resize);
Event.observe(window, "resize", block_resize);
#MWS-CAF-Task-Engine#webMethods#webMethods-BPMS