Question

Fixed Filters in detail

Hi there,

 

I want to add fixed filters in detail used in the section record in such a way that the user doesn't need to add the filter manually.

The highlighted functionality needs to be achieved. Please refer to the document if this has been implemented in the past.

Like 0

Like

1 comments

You can add this code to the methods in the detail for it to default to showing the filter options: 

init: function() {
	this.callParent(arguments);
	this.set("IsDetailFilterVisible", true);
}

Ryan

Show all comments