FAQ/FilteredListReports.md
... ...
@@ -4,7 +4,7 @@
4 4
5 5
##About
6 6
7
-This method returns a list of reports that are guaranteed to be available to the current user, taking into account all [[hidden filters|http://wiki.izenda.us/FAQ/applying-hidden-filter-using-inner-query]] and settings. This method can be overridden in your [[CustomAdHocConfig|http://wiki.izenda.us/Integration/Tutorials/Customizing-Izenda-Settings]] class as needed. Here is a sample of what an overridden implementation could look like.
7
+This method is used on the dashboards page and returns a list of reports that are guaranteed to be available to the current user, taking into account all [[hidden filters|http://wiki.izenda.us/FAQ/applying-hidden-filter-using-inner-query]] and settings. This method can be overridden in your [[CustomAdHocConfig|http://wiki.izenda.us/Integration/Tutorials/Customizing-Izenda-Settings]] class as needed. Here is a sample of what an overridden implementation could look like.
8 8
9 9
_**Note:** For more on caching in Izenda, please see the [[UseCachedFilteredLists|/API/CodeSamples/UseCachedFilteredLists]] setting._
10 10
... ...
@@ -38,4 +38,8 @@ Public Overrides Function FilteredListReports() As ReportInfo()
38 38
Next
39 39
Return DirectCast(result.ToArray(GetType(ReportInfo)), ReportInfo())
40 40
End Function
41
-```
... ...
\ No newline at end of file
0
+```
1
+
2
+##See Also
3
+
4
+* [[FilteredListReportsDictionary|FAQ/FilteredListReportsDictionary]]
... ...
\ No newline at end of file