nicolasbilous
nicolasbilous

Reputation: 11

label too big for a radiogroup radio button

I wish no chario return for a radio button label ... Can someone help me ?

My code is as :

 items: [{
            xtype: 'radiogroup',
            margin: "0 0 0 150",
            labelAlign: 'left',
            columns: 2,
            vertical: true,
            items: [
                { boxLabel: 'Standard Communication', name: 'typeOfCommunication', inputValue: '1' },
                { boxLabel: 'Bulk Communication', name: 'typeOfCommunication', inputValue: '2' }]
        }]

Upvotes: 0

Views: 449

Answers (1)

pagep
pagep

Reputation: 3629

You need to set width for your radiogroup and perhaps the labelWidth.

enter image description here

https://fiddle.sencha.com/#view/editor&fiddle/2g37

labelWidth in the docs.

Upvotes: 1

Related Questions