Archive for September, 2009

New Monmonja Homepage

Posted on September 7th, 2009 in Announcement | No Comments »

Over the weekend i had redone monmonja’s homepage to make it look better, i had used css3 staff and some minor jquery animation with some plugins.
Enough of explanation, just head over

http://monmonja.com/

Note: For best view, you need Google Chrome, Firefox 3.5 or Safari.

Fixing ExtJS setStyle problem in IE

Posted on September 4th, 2009 in Javascript, Programming | No Comments »

Back with programming post, if you use ExtJS and you had a problem with IE then see if the setStyle is the one issuing it. To fix this :

Find
H==”opacity”
or find the line that have
H==”opacity”?this.setOpacity(I):this.dom.style[w(H)]=I

Replace it with
if(H==”opacity”){this.setOpacity(I)}else{try{this.dom.style[w(H)]=I}catch(e){}}

Hope this helps