does anyone know how to align a togglefield
in Sencha Touch 2 to the right side of the fieldset
component? Having this simple example:
Ext.widget("fieldset", {
items: [
{
xtype: 'togglefield',
label: 'Toggle 1',
},
{
xtype: 'togglefield',
label: 'Toggle 2'
}
]
});
The ouput looks fine except of the fact the the two togglefields are aligned to the left side just next to the label text. I would like to have them aligned to the right side of the fieldset
component.