Ext JS JavaScript DHTML



Hello World Window






Ext.onReady(function() {
    var radioGroup = {
        xtype: 'fieldset',
        title: 'Groups',
        autoHeight: true,
        items: [
            {
                xtype: 'radiogroup',
                itemCls: 'x-check-group-alt',
                fieldLabel: 'Name',
                allowBlank: false,
                anchor: '95%',
                items: [{
                    columnWidth: '.25',
                    items: [
                        {xtype: 'label', text: 'Heading 1', cls:'x-form-check-group-label', anchor:'-15'},
                        {boxLabel: 'Item 1', name: 'yourName', inputValue: 1},
                        {boxLabel: 'Item 2', name: 'yourName', inputValue: 2}
                    ]
                }]
            }
        ]
    };
    var fp = new Ext.FormPanel({
        title: 'Title',
        frame: true,
        labelWidth: 110,
        width: 600,
        renderTo:Ext.getBody(),
        bodyStyle: 'padding:0 10px 0;',
        items: [
           radioGroup
        ]
    });
});
 
asdf