Articles in this section
Category / Section

How to open the FilterSort Dialog using code behind

1 min read

The following code snippets shows you how to open the FilterSortDialog using code behind.

 

C#

 
  \\ the below code explains how to open Column Filter Dialog
   this.olapClient1.ShowColumnFilterDialog();
 
\\ the below code explains how to open Column Sort Dialog
   this.olapClient1.ShowColumnSortingDialog();
 
\\ the below code explains how to open Row Filter Dialog
   this.olapClient1.ShowRowFilterDialog();
 
\\ the below code explains how to open Row Sort Dialog
   this.olapClient1.ShowRowSortingDialog();
 

 

VB

 
  ' the below code explains how to open Column Filter Dialog   
    Me.olapClient1.ShowColumnFilterDialog()
 
' the below code explains how to open Column Sort Dialog   
    Me.olapClient1.ShowColumnSortingDialog()
 
' the below code explains how to open Row Filter Dialog   
    Me.olapClient1.ShowRowFilterDialog()
 
' the below code explains how to open Row Sorti Dialog   
    Me.olapClient1.ShowRowSortingDialog()

 

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied