Login Register

Error with IE for creating Tab

Hi, I am using dojo 0.9 and got a problem with creating tabs in IE. In Firefox, the code works perfect. It seems to stop at addChild() function in IE. Any idea?

Below is my code.

function createTab(){
    var newItemTab = new dijit.layout.ContentPane({id:'abc', title:'def', refreshOnShow:true,closable:true}, dojo.doc.createElement('div'));
 
   dijit.byId('tab-block').addChild(newItemTab);
   newItemTab.startup();
   newItemTab.setContent(data);
   newItemTab.refresh();
}

....

Some Content