Article Details
Id: | 20376 |
Product: | finPOWER Connect |
Type: | NEW |
Version: | 4.00.03 |
Opened: | 21/06/2023 |
Closed: | 29/06/2023 |
Released: | 27/09/2023 |
Job: | J031371 |
Task Manager 2; "Task Manager 2 Folder" type Scripts; Can now support a custom filter message and prevent Widget from auto-refreshing the folder count
"Task Manager 2 Folder" type Scripts can now override the filter message that appears in the filter textbox above the results grid. They can also instruct the Widget not to auto-refresh the folder count displayed in Task Manager 2.
The following HTML Widgets have been updated:
- HtmlWidget_TaskManagerFolder_MonitoredAccounts
- Version: 1.05 (28/06/2023)
- HtmlWidget_TaskManagerFolder_AccountApplications
- Version: 1.03 (29/06/2023)
- HtmlWidget_TaskManagerFolder_Tasks
- Version: 1.03 (29/06/2023)
- HtmlWidget_TaskManagerFolder_Workflows
- Version: 1.04 (29/06/2023)
The sample Script below shows how to override the message:
With result
.FolderContent = MonitoredAccounts
.MaxSizeExceeded = MaxSizeExceeded
.FolderCountMessage = String.Format("Type to filter ({0} items, {1} of which are green)", MonitoredAccounts.Count, GreenCount)
.FolderCountDisableRefresh = True
End With