Announcements
No record found.
All,
Is it possible to hide the Advanced filter or sort button on the form action pane
I know the code but do not find the macro in the list #SysSystemDefinedButtons
[Form]public class form2 extends FormRun{ FormCommandButtonControl showListButton; public void init() { #SysSystemDefinedButtons super(); showListButton = this.control(this.controlId(#SystemDefinedShowListButton)) as FormCommandButtonControl; showListButton.visible(false); }}
Hi Srikanth,
Try below code and check. If its not available in macros try mentioning the button name and check.
public void init() { #SysSystemDefinedButtons str SystemDefinedAdvancedFilterButton = "SystemDefinedAdvancedFilterButton"; FormCommandButtonControl filter; super(); filter = this.control(this.controlId(SystemDefinedAdvancedFilterButton)) as FormCommandButtonControl; filter.visible(false); }
Thanks,
Girish S.
Thank you Girish, it worked
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our 2026 Super Stars!
Thanks to all of our 2025 Community Spotlight stars!
These are the community rock stars!
Stay up to date on forum activity by subscribing.
André Arnaud de Cal... 509 Super User 2026 Season 1
Giorgio Bonacorsi 375
Adis 268 Super User 2026 Season 1