Hello Kendo practitioners!
I'm currently working on creating a complex input field.
As shown below, I want to input 3 fields in 4 columns, and I want to make the 2nd field use 2 columns.
So I tried writing code like this, but it didn't work.
$("#baseForm").kendoForm({
orientation: "horizontal",
layout: "grid",
grid: {
cols: 4,
gutter: 0
},
items: [
{
field: "field1",
label: "field1",
},
{
field: "field2",
label: "field2",
attributes : {colspan: 2}
},
{
field: "field3",
label: "field3",
},
],
buttonsTemplate:'',
submit: function(e) {
e.preventDefault();
}
});
Thank you very much for your help!