Can anybody tell me as to how can i add two sections to my two column layout in

Can anybody tell me as to how can i add two sections to my two column layout in the record ?
Thanks in advance ....

OriginalPostID-78891

OriginalPostID-78891

  Discussion posts and replies are publicly visible

Parents
  • @ajinkyab277 : Can i not do anything similar to
    type!SectionLayout(
    label: "AW-123",
    content: type!ColumnArrayLayout(
    columns: {
    type!ColumnLayout(
    contents: {
    type!TextField(
    label: "Customer",
    value: "Andrew Nelson",
    readOnly: true
    ),
    type!TextField(
    label: "Summary",
    value: "Error Message when Submitting Time Report",
    readOnly: true
    )
    }
    ),
    type!ColumnLayout(
    contents: {
    type!TextField(
    label: "Priority",
    value: "High",
    readOnly: true
    ),
    type!DateField(
    label: "Date Submitted",
    value: date(2013,1,20),
    readOnly: true
    )
    }
    )
    }
    )
    )
    In this only one section is created for two columns . I want to give separate section labels to both columns ?
Reply
  • @ajinkyab277 : Can i not do anything similar to
    type!SectionLayout(
    label: "AW-123",
    content: type!ColumnArrayLayout(
    columns: {
    type!ColumnLayout(
    contents: {
    type!TextField(
    label: "Customer",
    value: "Andrew Nelson",
    readOnly: true
    ),
    type!TextField(
    label: "Summary",
    value: "Error Message when Submitting Time Report",
    readOnly: true
    )
    }
    ),
    type!ColumnLayout(
    contents: {
    type!TextField(
    label: "Priority",
    value: "High",
    readOnly: true
    ),
    type!DateField(
    label: "Date Submitted",
    value: date(2013,1,20),
    readOnly: true
    )
    }
    )
    }
    )
    )
    In this only one section is created for two columns . I want to give separate section labels to both columns ?
Children
No Data