I have a Dynamic form of Components, There's this Button (Import) which is not moving into 2nd Row.
The issue is not happening if I put any Inputs like TextInput or Number Input. This issue occurs only for Different components like RadioButton, Anchor, Button etc.
My JS looks like this,
{
name: "custodian",
title : "Custodian Name",
align : "left",
required: false,
minWidth : 95,
colSpan: 2
},
{
name: "accNum",
title : "Account Number",
align : "left",
type: "text"
required: false,
minWidth : 95,
colSpan: 1
},
{
name: "importBtn",
title : "IMPORT",
align : "left",
type: "button"
width : 95,
height: 30,
colSpan: 1
}
and so on....
Please help me out
The issue is not happening if I put any Inputs like TextInput or Number Input. This issue occurs only for Different components like RadioButton, Anchor, Button etc.
My JS looks like this,
{
name: "custodian",
title : "Custodian Name",
align : "left",
required: false,
minWidth : 95,
colSpan: 2
},
{
name: "accNum",
title : "Account Number",
align : "left",
type: "text"
required: false,
minWidth : 95,
colSpan: 1
},
{
name: "importBtn",
title : "IMPORT",
align : "left",
type: "button"
width : 95,
height: 30,
colSpan: 1
}
and so on....
Please help me out
Comment