Hello,
I've recently updated to the latest version of WinConrols UI (2014.2.715.40) after realising that MasterGridViewTemplate is now MasterTemplate
It now reports that filterexpressions properties are no longer valid.
What's the best way to update the code below? It essentially saves the filters to a sql table.
Thanks
Dim feCollection As FilterExpression() = New FilterExpression(grid.MasterTemplate.FilterExpressions.Count) {}
Dim i As Integer = 0
While i < grid.MasterTemplate.FilterExpressions.Count
InsertJobLibraryFilterValues(grid.Name, grid.MasterTemplate.FilterExpressions(i).PropertyName, grid.MasterTemplate.FilterExpressions(i).Operator, grid.MasterTemplate.FilterExpressions(i).Value, iFilterGroupID)
i = i + 1
End While
Return feCollection
I've recently updated to the latest version of WinConrols UI (2014.2.715.40) after realising that MasterGridViewTemplate is now MasterTemplate
It now reports that filterexpressions properties are no longer valid.
What's the best way to update the code below? It essentially saves the filters to a sql table.
Thanks
Dim feCollection As FilterExpression() = New FilterExpression(grid.MasterTemplate.FilterExpressions.Count) {}
Dim i As Integer = 0
While i < grid.MasterTemplate.FilterExpressions.Count
InsertJobLibraryFilterValues(grid.Name, grid.MasterTemplate.FilterExpressions(i).PropertyName, grid.MasterTemplate.FilterExpressions(i).Operator, grid.MasterTemplate.FilterExpressions(i).Value, iFilterGroupID)
i = i + 1
End While
Return feCollection