Several input fields in one table cell

Hi there,

Is there a simple way to force several input fields that are within one table cell to appear next to each other instead of one on top of the other?

Thanks!

Hey @Bart_Verhaeghe,

I think you could tweak that when you set the width of the column fixed, like this for instance:

    {% stripnewlines %}
    | Header A
    | Header B
    {% newline %}
    |-------40%-------
    |-----------------+
    {% newline %}
    | {% input custom.some.thing_1 %} {% input custom.some.thing_2 %}
    | {% input custom.some.thing_3 %}
    {% endstripnewlines %}

but it all depends on how many objects you’re trying to squeeze in there; the width of each object can’t be altered.