#RecordListView-SearchBox

Hi All,

In Record list view there is search box.

what is the search criteria for this?

will it search all data which are displaying in List view? 

can we customize this search box?

 

Thanks in advanced.

  Discussion posts and replies are publicly visible

Parents
  • +1
    Certified Lead Developer
    This depends whether you're using the grid or feed layout for the record.

    If you're using the feed type view, @conorc is pretty much there - essentially any field used in the title is searchable. However, it's worth knowing that there's a useful - if technically unsupported - trick here, in that any field used in the title expression is searchable even if it's not actually displayed. Bearing this in mind, you can use the concatenate function to reference multiple fields, but concatenate them conditionally. For example:

    fn!concat(
    "Case: ",
    rf!caseId,
    " - ",
    rf!caseName,
    if(
    true,
    "",
    fn!concat(
    rf!caseDescription,
    rf!caseInitiator
    )
    )
    )

    The above will display caseId and caseName, but make the other two fields searchable.

    If you're using the grid layout, any field you map to a column is searchable - though this doesnt apply for values you retrieve using rules; only rf! fields are searchable. If there are fields you wish to search but not display, there is an option to hide a field - if it's hidden, it isn't shown but it is still searchable.
  • can we write any customize rule inside the fn!concat like groupbyname("ABC') and it will return all record who is having ABC group name and also if we configure date and time field, will it filter the record?

  • 0
    Certified Lead Developer
    in reply to vikrams290
    No, only rf! fields can be used to filter. We usually build a view for the record as there's often a lot of other information that is useful to display or filter with, and having it all in the one cdt makes that a lot easier.
Reply Children
No Data