Filters in Readonly grid

Hi Team ,

The requirement is to add dropdown filters to all fields between the header label and the first row in Readonly grid . Is this possible in Appian?

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Senior Developer
    in reply to goddativ5526

     
    a!localVariables(
    local!search,
    {
    a!sectionLayout(
    label: "",
    contents: {
    a!sideBySideLayout(
    items: {
    a!sideBySideItem(
    item: a!textField(
    label: "",
    labelPosition: "COLLAPSED",
    value: local!search,
    saveInto: local!search,
    refreshAfter: "UNFOCUS",
    validations: {}
    )
    ),
    a!sideBySideItem(
    item: a!buttonArrayLayout(
    buttons: {
    a!buttonWidget(
    label: "SEARCh",
    style: "OUTLINE"
    )
    },
    align: "START",
    marginBelow: "NONE"
    )
    )
    }
    )
    }
    )
    }
    )

    When clicked on search, refresh the query that is getting the data to in grid and the query need to contain query filters for the fields to search.
    Just for your reference but its not recommended to use. For 50 fields, you have to use a!queryfilter and pass the local!search and return the data which is not good as per performance.

Children
No Data