Ext JS JavaScript DHTML



Hello World Window





Ext.onReady(function() {
    var btnHandler = function(btn) {
        alert('alert');
    }
    new Ext.SplitButton({
        renderTo : Ext.getBody(),
        text     : 'Plain SplitButton',
        handler  : btnHandler
    });    
});