I am trying to fire the resize event on window programmatically:
var evt = document.createEvent('HTMLEvents');
evt.initEvent('resize', true, false);
window.dispatchEvent(evt);
That unfortunately does not work. I am trying to make ExtJS library to do recalculations, and it uses DOM Level 3 events so I cannot just call window.onresize();.

$(window).resize();because jQuery has it's own event abstraction. Doesn't ExtJS has something similar you can use? – Martin Jespersen Oct 1 '11 at 17:56window.onresize()? – sdleihssirhc Oct 1 '11 at 18:09