Hi ,
How to combine two fieldset in one form.
FormData3 = [
{ type: “settings”, position: “label-left”, labelWidth: 50, inputWidth: 100 },
{
type: “fieldset”, label: “Ship To”, width: 500, list: [
{ type: “input”, name: “customerID” , inputHeight:31},
{type: “newcolumn”, offset: 20},
{ type: “button”, value: "Sales Order ", name: “salesOrder” },
{type: “newcolumn”, offset: 20},
{ type: “input”, label: "Bill To : ", value: " ", name: “customerName”, inputHeight:31 },
]
},
{
type: “fieldset”, label: “Ship To”, width: 500, list: [
{ type: "input", label: "Name address : ", value: " ", name: "nameAndAddress", rows:5, inputWidth: 400 },
//{type: "newcolumn", offset: 20},
{ type: "input", label: "Bill To : ", value: " ", name: "customerName", inputWidth: 400 },
{ type: "select", label: "Attn:", name: "attn", options: [
{ value: "a", text: "A", selected: true },
{ value: "b", text: "B" },
{ value: "c", text: "C" }]
},
]
}
];