How to create multiply input with single label?

I wanna create something that:

single_label

input      input      input
*******   *******   *******

How to create it?

 // WORK NOT CORRECT!
 // text isn't visible
 rows: [
            {
                template: '<p>Card Number</p>'
            },
            {
                cols: [
                	{ view:"text"},
                	{ view:"text"},
                	{ view:"text"}
                ]
            }
            ...
 ]

text isn’t visible

While the ui.text has the predefined height, the template fills all available space. You can define the height or use a label instead:

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