/* * Ext JS Library 2.0.1 * Copyright(c) 2006-2008, Ext JS, LLC. * licensing@extjs.com * * http://extjs.com/license */ Ext.onReady(function(){ // basic tabs 1, built from existing content var tabs = new Ext.TabPanel({ renderTo: 'tabsprd', width:550, activeTab: 0, frame:true, defaults:{autoHeight: true}, items:[ {contentEl:'proddetail', title: 'Product Detail'}, {contentEl:'vids', title: 'Video'}, {contentEl:'belanja', title: 'How To Buy'}, {contentEl:'shipping', title: 'Payment And Shipping'}, {contentEl:'warranty', title: 'Warranty And Claim'}, {contentEl:'faq', title: 'FAQ'} ] }); });