Is is possilbe to divide the form in two cotumns without using an html-table?
for example:
list: [{
type: “input”,
label: “monday from”,
name: “Package”,
value: “”
}, {
type: “input”,
label: “to”,
name: “Version”,
value: “”
}
]
the output will be something like this:
monday from [___________]
to[__________]
Is there also a way to put it in one line without using a htmltable:
monday from [___________]to[__________]
thank you for your help