Replicate record search criteria with magnifying glass

Certified Senior Developer

Hi All,

i want to replicate the below section in another interface manually.  Which SAIL component can i use? 

  Discussion posts and replies are publicly visible

Parents Reply
  • +1
    Certified Lead Developer
    in reply to natashan0002

    yea, one more alternative

    a!cardLayout(
      shape: "SEMI_ROUNDED",
      padding: "NONE",
      contents: a!sideBySideLayout(
        alignVertical: "MIDDLE",
        items: {
          a!sideBySideItem(
            width: "MINIMIZE",
            item: a!richTextDisplayField(
              labelPosition: "COLLAPSED",
              value: {
                "  ",
                a!richTextIcon(
                  icon: "search",
                  color: "SECONDARY",
                  size: "MEDIUM"
                )
              }
            )
          ),
          a!sideBySideItem(
            item: a!textField(
              labelPosition: "COLLAPSED",
              placeholder: "Search course by name or id"
            )
          )
        }
      )
    )

Children
No Data