meteor-autoform-semantic-ui icon indicating copy to clipboard operation
meteor-autoform-semantic-ui copied to clipboard

UI INPUT is not fluid

Open diuzzoli opened this issue 8 years ago • 0 comments

Hi all, I have the following scheme:

uf.attachSchema(new SimpleSchema({
    codigo: {
        type: String,
        label: "Código"
    },
    unidad: {
        type: String,
        label: "Unidad"
    },
    propietarios: {
        type: Array,
        optional: true
    },
    'propietarios.$':{
        type: Object
    },
    'propietarios.$.nombre':{
        type: String
    },
    'propietarios.$.mail':{
        type: String,
        regEx: SimpleSchema.RegEx.Email
    }
}));

The problem is that the group of PROPIETARIOS does not 100% of the screen. How I can fix or change this class?

This is how it shows: propietarios_not100

This is how it should show: propietarios_100

In the HTML template I use:

        <div class="ui container">
            {{#autoForm collection="uf" id="UfPropietariosForm" doc=uf type="update" template="semanticUI" fields="propietarios"}}
                {{> afQuickFields}}
                <div class="ui right aligned container">
                    <div class="actions">
                        <button type="submit" class="ui blue submit button">Confirmar</button>
                        <button type="button" class="ui cancel button">Cancelar</button>
                    </div>
                </div>
            {{/autoForm}}
        </div>

Regards Daniel

diuzzoli avatar Jul 11 '16 03:07 diuzzoli