This documentation is for the legacy Izenda 6 product. Documentation for the new Izenda 7 product can be found at https://www.izenda.com/docs/
This method allows for custom handling of whether specific fields can be used in filters or not.
Note: Overriding this method with custom behavior will cause certain settings to get ignored, such as HiddenColumns and FiltersRegex.
public override bool IsFieldAllowedInFilters(string fullColumnName, string columnName) { switch (columnName) { case "OrderID": case "CustomerID": case "EmployeeID": case "ShipperID": return false; default: return true; } }
Public Overrides Function IsFieldAllowedInFilters(fullColumnName As String, columnName As String) As Boolean Select Case columnName Case "OrderID", "CustomerID", "EmployeeID", "ShipperID" Return False Case Else Return True End Select End Function
Last edited by Joseph Adams, 2017-05-24 17:48:10