﻿/*!
 * Ext JS Library 3.0.0
 * Copyright(c) 2006-2009 Ext JS, LLC
 * licensing@extjs.com
 * http://www.extjs.com/license
 */
var ResizableExample = {
    init : function(){
        
        var wrapped = new Ext.Resizable('wrapped',{
            wrap:true,
            pinned:true,
            minWidth:50,
            minHeight: 50,
            preserveRatio: true,
            tooltip: {text:'This is a an example QuickTip for a toolbar item', title:'Tip Title'},
        });
/*
    	var tb = new Ext.Toolbar({cls : 'toolbar'});        
    	tb.render('toolbar');    
        
        tb.add({
        icon: 'js/ext3/examples/menu/list-items.gif', // icons can also be specified inline
        cls: 'x-btn-icon',
        tooltip: '<b>Astuce</b><br/>Pour aggrandir l\'image ci-dessous tirer sur les poignées inférieures ou latérales.'
    	});
	
		tb.doLayout();
*/		
    	}
};

Ext.onReady(function(){

Ext.QuickTips.init();
Ext.EventManager.onDocumentReady(ResizableExample.init, ResizableExample, true);

});