single Invalidation message for Multiple inputs in a column

I wanna view single invalidation message , if i didn’t fill date or month or year in a column i.e common validation message for dob column ,
please take look at this url => https://snippet.webix.com/h3158pfc
and my date must be garter than 0 less than 32 , month must not empty,and year must be greater than 1900 . and also i just wanna see invalidMessage not as webix.Message().
This is my actual form ==> https://snippet.webix.com/gbblsip7

Hello @sathishkumar,
Unfortunately, the invalidMessage can’t overflow its input or be shared with neighbour elements, but there is a solution that can behave per description.
Please check the following example and comments in it: https://snippet.webix.com/29aglg94
inputs that should be combined have a complex rule that checks all three values for each.
as the invalidMessage is not an option, there is a hidden label that inherits its styling and can be shown/hidden during the validation of controls.
Exactly the same design can be used for the zip/state fields. As a limitation, such custom rule assumes that the names of the fields are known.

Please note also that during validation and setting/getting values, the form relies on the name property of nested inputs (i.e. controls that can have a value).
The ID of a widget is a global reference that is not linked with the form API, so, unfortunately, there is no way to assign a rule to the parent layout (“dob” in the provided examples).

Thank You @annazankevich .