Bug report: Data Validation message

In that sample (V2.4)

http://docs.webix.com/samples/13_form/04_validation/12_validation_message.html

when you submit and get an error, then fix that error → the input field height grows.

Thanks for the bug report. We will fix the problem.

We just have released Webix 2.4.4. This version contains a fix for the above issue.

Hello, I have an issue similar to this one.

As you can see here http://webix.com/snippet/28a17969 , when you validate the form and got an error on the first column, all the other fields in the same row grows.

Is this a bug or workaround to avoid this?

Thank you!

As a workaround, please set the bottomPadding manually:

elementsConfig:{
    bottomPadding:18
},

http://webix.com/snippet/2bb5bf2c

I was trying to avoid this as I have some big forms and this padding will make them even bigger. I’ll set and wait for a fix/better solution.

Thank you!

Actually, this is not a bug but a default behavior. Inputs are filling their parent container, which height was increased.

You can fix the inputs’ height manually within elementsConfig:

http://webix.com/snippet/ef415e13

Oh… that’s much better. I was thinking about another solution but I forgot about the most obvious. I’m starting at Webix world now, so I still have to learn a lot from it.

Thank you!