Hi everyone!We’ve released the following platform improvements this week: IAM 2021.3 and up20230530 - Next group labels for grids in variants A table variant would show group labels in the grid based on the 'Next group' setting for the base table columns, instead of the setting for the variant columns themselves. This could potentially lead to labels being shown for variants where none of the columns had the 'Next group' setting enabled, because this setting was enabled for its base table columns.
In release 2023.1.16, we have fixed some issues involving SVG images. To enable these fixes, two changes for SVG icons were necessary. These changes have been applied to model icons and icons uploaded by users with an upload control.Style tags were stripped from uploaded SVGs. These tags allowed insertion of random CSS on the web page. If you still need CSS styles, most SVG editors default export SVGs with a style="" attribute instead of a style tag. Attributes are still supported. Larger SVGs were resized to fit Image elements.The icons are probably cached by your browser, so the changes will only be visible after you have cleared the cache or added new icons.We recommend that you validate in the Software Factory- and end product database if you are using icons with style tags in your project. For example, with a query like this one, that searches for the `<style>` tag:select distinct * ,cast(icon_data as VARCHAR(max)) from icon where right(icon, 4) = '.svg' and cast(icon_data as VARCHAR(max)) like '%<style>%' --and branch_id = 'MAIN'The resulting icons may not show up as expected after clearing the browser’s cache. To fix this, replace the <style> tag with inline styles in the SVG files:Open the SVG file in a text editor. Search for the <style> block and convert in into inline styles.In the example below, the style from the `<style>` tag is applied to all elements in de SVG file containing the a style class. You can read more about different CSS selectors here: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors SVG icon with inline styleWe hope this gives you enough information to work around this problem.
May 26, 2023Full release 2023.1.17 Hello everyone,In this sprint, we have added new features like a screen component and settings for applying conditional layouts to task and report parameters, confirming manually saved records, and hiding breadcrumbs in a screen. We have also improved the custom CSS.And as the Thinkwise Platform release 2023.2 approaches, we have been working on support for it. DemoAs always, we have made a demo for you: try it here. Before trying it out, press 'Clear Cache' on the login screen.Read the Universal GUI user interface guide to get familiar with the GUI. Universal GUI version 2023.1.17For more information about setting up the Universal GUI, see the Universal GUI setup guide.Note:Use a modern browser to access the Universal GUI, e.g., a recent version of Chrome, Firefox, Edge, or Safari mobile. Deploy the Universal GUI on the same server as Indicium or an allowed origin in appsettings.json. The Universal GUI only works with version 2021.2 and up of the Thinkwise Platform. Run all hotfixes on IAM and the Software Factory that you plan to use for the Universal GUI. Use the latest version of Indicium.Download the Universal GUI version 2023.1.17 here ContentsDemo Universal GUI version 2023.1.17 Contents New New screen component: Toolbar Conditional layouts for task and report parameters New subject setting: Confirm update New lookup control: Suggestion starts with Hide breadcrumbs on main screen Changed Background colors and picture in custom CSS Set a background color for a subject or variant Minor fixes and tasks What we will be working on next sprint Questions or suggestions? New New screen component: ToolbarA new screen component is now available: the Toolbar. You can add it to a screen in the Software Factory (menu User interface > Screen types > tab Design).Use this component to manually place the toolbar anywhere on a screen. When you add it to a screen, the default toolbar will not be generated.This setting is available in the Thinkwise Platform version 2023.1 when you are up-to-date with all Software Factory hotfixes and in the upcoming 2023.2 release. An example of the toolbar wedged between task and report tiles Conditional layouts for task and report parametersConditional layouts were already available for default forms. Now, you can also create them for task and report parameters. You can use them, for example, in a task parameter dialog to draw the user's attention to a specific field.You can set the conditional layouts in:menu Processes > Tasks > tab Conditional layout/Universal menu Processes > Reports > tab Conditional layout/Universal New subject setting: Confirm updateThe Universal GUI now supports the Confirm update setting (menu User interface > Subjects > tab Settings > tab General > group Settings). When selected, a user needs to confirm a manually saved record. This is already available for deletion or cancellation (Confirm delete). New lookup control: Suggestion starts withWe have added a new lookup control: Suggestion starts with (menu User interface > Subjects > tab Columns > tab Lookup). When a user searches for a value, the Universal GUI will display suggestions based on the characters that the value begins with. Hide breadcrumbs on main screenIt is now possible to hide the bread crumbs on a main screen. You can use this, for example, for cubes. In a cube, showing the current record is not very useful.The setting is available in the menu User interface > Screen types > tab Form > tab Screen types > group Settings.This setting is available as of the upcoming 2023.2 release. Example of a screen without breadcrumbs Changed Background colors and picture in custom CSSIn the Software Factory, you can set the background colors and image for your application (menu User interface > Themes). Now, you can use these colors and image in your custom CSS using custom properties (CSS variables).For the Main color, use --primary-color For the Accent color, use --secondary-color For the Theme picture, use --background-pictureExample:/* Give labels the primary color with a background image, with a backup for light mode */.light label { color: var(--primary-color, #323232) !important; background-image: var(--background-picture) !important;}/* Make all SVG's the secondary color, with a backup for light mode */.light svg { fill: var(--secondary-color, #323232) !important;}/* Give labels the primary color with a background image, with a backup for dark mode */.dark label { color: var(--primary-color, #fafafa) !important; background-image: var(--background-picture) !important;}/* Make all SVG's the secondary color, with a backup for dark mode */.dark svg { fill: var(--secondary-color, #fafafa) !important;} Set a background color for a subject or variantEach screen in the Software Factory now has data properties that allow you to access the current subject and variant.data-tab-id={tab} data-tab-variant-id={tab variant} data-tab-ref-id={reference id}You can use these properties in your CSS to set a background color for a subject or variant:[data-tab-id="project"][data-tab-variant-id="mobile"] .grid { background: #fafafa !important;}This CSS only changes the background for the grid on the subject project with the variant mobile. Minor fixes and tasksIn some cases, the toolbar had an incorrect size, causing the Refresh button to overlap with a task button or the task overflow menu to be invisible. This has been fixed. We fixed that some controls (image, progress bar) were not vertically aligned in the center of the grid. If you executed a task to update a field in the current record, the editable form would still display the previous value. This has been fixed. The Edit row process action did not follow the 'unsuccessful' arrow when there was no record. This has been fixed. Note that you need the latest version of Indicium for this fix. What we will be working on next sprintThe next sprint we will be working on:Detail fallbacks (2023.2) Show readonly fields as label (2023.2) Drag and drop from a grid to context Tree multiselect Questions or suggestions?Questions or suggestions about the release notes? Let us know in the Thinkwise Community!
Hello everyone,In this sprint, we have fixed an issue.You can read more about the Windows and Web GUI's features, in the user interface manual. Download Windows GUI 2023.1.17 here. Download Web GUI 2023.1.17 here. Minor fixes and tasksWeb GUI We have fixed an issue that would result in performance loss when generating reports. Temporary folders and files were made for the generated reports but never deleted. The fix will clean up the temporary directory on every Web GUI startup. Questions or suggestions?Questions or suggestions about the release notes? Let us know in the Thinkwise Community!
Hi everyone!We’ve released the following platform improvements this week: SF 2022.1 and up20230522 - Add action bar screen component type Universal GUI version 2023.1.17 has added support for a new screen component type called: Action bar. This platform improvement will provide the Software Factory with the necessary data to ensure the Action bar can be configured in screen types.
Hello everyone,In this sprint, we have fixed some issues.You can read more about Indicium's features in the Indicium user manual. About IndiciumTwo types of the Thinkwise Indicium Application Tier are available: Indicium Basic: for use with the Windows GUI and Mobile GUI. This basic version does not support, for example, system flows and OpenID.Download Indicium Basic release 2023.1.17 here. Indicium: for use with the Universal GUI and via APIs. This version uses the full range of Indicium functionality.Download Indicium release 2023.1.17 here. ContentsAbout Indicium Minor fixes and tasks Questions or suggestions? Minor fixes and tasksIndicium Basic We have fixed an issue that could cause update statements to fail on Indicium Basic. The problem would occur when the subject had CHAR/NCHAR/GRAPHIC columns and a mandatory prefilter on the subject that was either a SQL prefilter or a prefilter with a condition on any of the previously mentioned columns or an expression column. In these scenarios, Indicium Basic would generate a syntax error in the update statement, causing it to fail. Indicium When requesting an entity but only selecting navigation properties (i.e., transl_project_id/name) and none of the entity's own properties, Indicium would serialize a JSON object for the record. This situation would only occur when using the OData $apply parameter to perform a groupby on navigation properties but not normal properties. This issue has been fixed. Questions or suggestions?Questions or suggestions about the release notes? Let us know in the Thinkwise Community!.
Hi everyone!We’ve released the following platform improvements this week: SF 2023.120230511 - Performance improvement in calculating effective rights It was possible for effective rights to be calculated inefficiently. This usually happens when roles grant rights to a large portion of the model, which is undesirable. It is best practice to keep roles small and create more roles rather than making roles grant rights to more objects. A performance improvement has been made for platform version 2023.1. IAM 2022.1 and up20230510 - Changing default status for model defined prefilters When editing prefilters from the Windows GUI via Indicium (basic), it is once again possible to save the default active state of both user-defined and model-based prefilters. In certain scenarios - depending on the execution plan of the queries - this could lead to errors in the Indicium log.
Hi everyone!We’ve released the following platform improvements this week: SF 2023.1 20230501 - Change Process action starting point screen type The Process action starting points screen made use of a screen type that had no screen components, leaving this screen empty. This has been fixed. IAM 2022.2 and up20230501 - Performance improvement up roles In some scenarios, the performance of the license report was degraded when there are a lot of users and roles. This has been improved.
May 5, 2023Full release 2023.1.16 Hello everyone,In this sprint, we have added support for expanding and collapsing an entire tree view, for opening a document in a floating browser window, and a filter indicator is shown on grid column headers.As always, we have made a demo for you: try it here. Before trying it out, press 'Clear Cache' on the login screen. You can read the GUI user manual to get familiar with the Universal GUI.We will keep you updated regularly about Universal GUI's progress. Universal GUI version 2023.1.16Do not forget the documentation and be sure to keep the following in mind:A modern browser is required to access the Universal GUI, e.g., a recent version of Chrome, Firefox, Edge, or Safari mobile. Using the Universal GUI with IE is not supported. The Universal GUI must be deployed on the same server as Indicium or an allowed origin in appsettings.json. The Universal GUI only works with version 2021.2 and up of the Thinkwise Platform. Run all hotfixes on IAM and the Software Factory that you plan to use for the Universal GUI. Use the latest version of Indicium.Download the Universal GUI version 2023.1.16 here ContentsUniversal GUI version 2023.1.16 New All items in a tree can be expanded and collapsed Open (detail) document in a new browser window Changed The resource scheduler uses user language from IAM Filter icon on a grid column header Minor fixes and tasks What we will be working on next sprint Questions or suggestions? New All items in a tree can be expanded and collapsedWe have added two new actions to the filter overflow menu of the toolbar: Collapse all and Expand all. These actions are only available for a tree component. Use them to expand or collapse all items in the tree view.If you select Default expanded for the tree view, that setting is no longer ignored.Note that the active row is always expanded.Expand or collapse a tree Open (detail) document in a new browser windowUniversal now provides equivalent functionality to the floating window. Press ALT and click in the menu or on detail tiles, or press ALT and double-click a detail tab to open that (detail) document in a new floating browser window.The windows are not connected. If you display the same records in both windows and make changes in one of them, the changes will not be reflected in the other window.Note that Open as floating document is not yet available in document-related process actions.Open a document in a new browser window Changed The resource scheduler uses user language from IAMThe resource scheduler would translate information on a page based on the installation settings of a browser, which would be undesirable in some cases.These translations are now based on the IAM language settings of the user who is currently logged in. Filter icon on a grid column headerIf you apply a filter to the grid, column headers now display the filter icon next to their name if their content is being filtered. Minor fixes and tasks The prefilters were not always visible in the prefilter bar the first time the screen was opened due to a timing issue. This has been fixed. Screens that contain a fixed-size component are now shown correctly. We have fixed some issues with the image upload control in combination with an SVG image. An SVG's style tags are now stripped from uploaded SVGs. These style tags allowed the insertion of random CSS on the web page. In case CSS styles are needed, most SVG editors allow for and by default export SVGs with that style as a style="" attribute instead of with a style tag, which is still supported. Larger SVGs are now resized to fit Image elements. For more information, see Style tags in SVG icons. The scroll position could be incorrect if you started a task on a card list. The card list now correctly scrolls to the active card. Unrelated detail subjects did start loading after changing the parent record, when they should not. This has been fixed. We have fixed the behavior of messages: Messages with the id add_separator will not be shown. Messages with the id clear_panel will hide all snackbar and panel messages. Zoomed details are now marked with a › in the open documents. Zoomed details marked with a > What we will be working on next sprintThe next sprint we will be working on:Drag and drop - Start on implementation for drag and drop in the grid Material UI upgrade - Universal GUI uses the third-party library Material UI for certain graphical components. This library has its own releases. We will upgrade the Universal GUI to a recent Material UI version. Conditional Layouts - Conditional layouts for task and report parameters. Questions or suggestions?Questions or suggestions about the release notes? Let us know in the Thinkwise Community!.
Hello everyone,In this sprint, we have updated the way the grid works when it is in auto-edit mode.You can read more about the Windows and Web GUI's features, in the GUI user manual. We will keep you updated regularly about the Windows and Web GUI's progress.Download Windows GUI 2023.1.16 here. Download Web GUI 2023.1.16 here. ChangedWindows GUIWe have changed the way a grid in edit mode saves data as it is being entered. It has been reverted back to refreshing rows based on the active row instead of the Refresh behavior (menu User interface > Subjects > tab Default/Variants > tab Settings > tab Performance > group Refresh) as default.An application can still allow the grid to refresh using the Refresh settings by applying the new extended property GridEditUpdateUsingRefreshOption.To update using the Refresh behavior, set GridEditUpdateUsingRefreshOption to 'Yes'. Questions or suggestions?Questions or suggestions about the release notes? Let us know in the Thinkwise Community!
Hello everyone,In this sprint, we have fixed a couple of issues.You can read more about Indicium's features in the Indicium user manual.We will keep you updated regularly about Indicium's progress. About IndiciumTwo types of the Thinkwise Indicium Application Tier are available: Indicium: for use with the Universal GUI and via APIs. This version uses the full range of Indicium functionality.Download Indicium release 2023.1.16 here. Indicium Basic: for use with the Windows GUI and Mobile GUI. This basic version does not support, for example, system flows and OpenID. No 2023.1.16 release available. Indicium - Changes Minor fixes and tasks Previously, if an email address in an EML file was corrupt or contained an unexpected value, Indicium would not show an email preview. Indicium will now skip the corrupt or unexpected value and display the email preview regardless. Previously, when clearing the default value of a column during an add record action, the column would still be given the default value after saving the record. Indicium now correctly saves the resource with a null value for that column, if it has been cleared. Previously, if a Delete Row process action could not be executed, for example, if the row does not exist or if there are no rows to delete, a continue call was not possible. The reason for this is that the process actions would automatically continue when the edit or delete action was being executed on Indicium. Now, you can continue such a process action, but only with negative status codes, so that if something goes wrong, the process flow can continue with the fail path. In our last release notes, we listed the following fix:Indicium adds Server-Timing headers to the response to provide extra information on how long certain things take during the request. When importing, this could lead to a gateway error, depending on where Indicium is hosted and how many rows were imported due to a limit on response header data.To avoid this, if more than 20 Server-Timing values have been added, Indicium will now aggregate the entire duration for each Server-Timing category/key instead of adding separate entries per imported row. Due to an oversight, this fix was not included in the last release, but it has been included in this release. Questions or suggestions?Questions or suggestions about the release notes? Let us know in the Thinkwise Community!.
Hi everyone!We’ve released the following platform improvements this week: SF and IAM 2023.120230414 - Universal translation and tooltip correction The Universal GUI did not receive the correct information regarding translations and tooltips for table tasks and report tasks. This has been corrected.
A hotfix release of the Universal GUI was requested to fix the latest production release: We have fixed a crash that could happen when a task was executed as a start object The 2023.1.15.1 release is now available to download in TCP.
April 14, 2023Full release 2023.1.15 Fixes: We have fixed a crash that could happen when a running process flow was executing a hidden task. The grid no longer has an empty Add row if the subject only allows adding and not editing. Hello everyone,In this sprint, we implemented a lot of new features, changes, community ideas, and fixes.Some of the main new features are the possibility to retrieve a user's current GPS location, and the availability of a lot of new cube chart configuration properties.The performance of relational data retrieval in lookups has also been greatly improved.As always, we have made a demo for you: try it here. Before trying it out, press 'Clear Cache' on the login screen. You can read the GUI user manual to get familiar with the Universal GUI.We will keep you updated regularly about Universal GUI's progress. Universal GUI version 2023.1.15Do not forget the documentation and be sure to keep the following in mind:A modern browser is required to access the Universal GUI, e.g., a recent version of Chrome, Firefox, Edge, or Safari mobile. Using the Universal GUI with IE is not supported. The Universal GUI must be deployed on the same server as Indicium or an allowed origin in appsettings.json. The Universal GUI only works with version 2021.2 and up of the Thinkwise Platform. Run all hotfixes on IAM and the Software Factory that you plan to use for the Universal GUI. Use the latest version of Indicium.Download the Universal GUI version 2023.1.15 here ContentsUniversal GUI version 2023.1.15 New and changed Support for fetching a user's current GPS location Performance improvement for relational data values Set cube chart defaults Refresh on revisiting a page or tab Behavior of local login for authentication provider hint Display options for table tasks and table reports Changed and new in form and grid New in Model insight Support for HTML in preview component Changed and new in process flows Translation in Scheduler based on IAM 'Clear' button only on hover Improved messages Minor fixes and tasks Fixes in grids and forms Fixes for tasks and reports Fixes for process flows Fixes for user interface Miscellaneous What we will be working on next sprint Questions or suggestions? New and changed Support for fetching a user's current GPS locationnew community ideaIt is now possible to fetch the current location from a device that supports GPS.To enable this, add Control type LOCATION to a domain (menu Data > Domains). The input field will get a location pin. When a user clicks on this pin, the GUI will ask permission to add the location coordinates.The format of the coordinates is: latitude,longitudeExample: 52.2083228,5.9794353When a user adds a new row, the LOCATION control will automatically fill the current location for empty mandatory input fields.In a mandatory field, the location is filled automaticallyIf the field is not in edit mode, it will become a clickable link that opens the coordinates in Google Maps.A clickable location link in a non-editable field Performance improvement for relational data valueschangedPreviously, lookup values were loaded right after the subject's data. This resulted in a delay before the values would show in grids and card lists. Every lookup column made its own Expand API request to Indicium, even if the lookup column was not visible. These requests used a lot of resources.We have changed this by expanding the lookup values directly on the subject's main data request.Extra requests are no longer necessary. This change has resulted in a much faster experience.All values now show up at once. And, by executing the main select only once, a lot of overhead is saved in the individual calls on the web- and database server, especially when the main subject contains a view with some logic.So, for every relational (lookup) column in the subject or variant, it saves a request to the backend. The best way to experience the performance improvement is to check it out yourself.Make sure that each lookup subject performs fast on its own because a single slow lookup will delay loading all the data from the main subject. Set cube chart defaultsnewFor a cube chart, you can now add all the configuration properties from https://www.fusioncharts.com/dev/chart-attributes to the Universal GUI's config.json fileunder the property chartDefaults.The properties will not override the properties that come from the model:caption, decimalSeparator, thousandSeparator, stack100Percent, showValues,showPercentage, showLegend, legendPosition, and reverseLegend.It is possible to override the paletteColors property, but if that contains only one item, this color will remain the theme's main color.Example: to prevent cube charts from rounding values, use the property "chartDefaults": { "formatNumber": "0" }.CautionThe settings are applied to all charts of the GUI to which this config.json file belongs. There are many properties, and we did not test all of them.We are investigating formalization of these settings in the Software Factory.Example of the settings and the result in a chart Refresh on revisiting a page or tabnew Community ideaTo provide a user with fresh data when they revisit an open document or reselect a detail tab, we have implemented support for two extended properties:RefreshOnDocumentSwitch - refreshes an already opened document on re-entrance RefreshOnTabSwitch - refreshes an already visited detail tab on reactivationBe careful when using these settings since they increase the server load in a multi-user environment. Consider using a process flow or auto-refresh with change detection instead.See:Auto-refresh Change detection Behavior of local login for authentication provider hintchangedIn the 2023.1.13 release, we added the loginAuthProviderHint option to provide a hint about the authentication provider to Indicium.In this release, we have changed the behavior when the hint locallogin is used. The Universal GUI will now show the login screen without redirecting to Indicium. Display options for table tasks and table reportsnew Community ideaIn the Software Factory, a new setting is available for Table tasks and Table reports. It is called Display type.With this setting, you can control their appearance in the toolbar. For example, if you select Icon, the toolbar button will never expand to show the text. You can differentiate this setting for each button.The setting is available:For Table tasks: menu Processes > Tasks > tab Table tasks > tab Form For Table reports: menu Processes > Reports > tab Table reports > tab FormExample: display options for a table report Changed and new in form and gridchanged newColumns unlocked when space is insufficient - In a screen with insufficient horizontal space, the grid will now one by one unlock the locked columns. If the screen layout or size is changed to provide more space, the columns will be locked again. 'Add' for grouped grids disabled - We have disabled Add for grouped grids since it is not possible to fill in all the required values. This will be re-enabled later. Tooltip on image combo in grid - A tooltip that displays the domain element name of an image combo is now available in the grid. You can set the domain element name in the menu Data > Domains > tab Elements > field Element. 'No. of columns in form' interpreted differently - If the setting No. of columns in form is set to '0', the Universal GUI will now interpret this as "as many columns as possible" instead of just three (menu User interface > Subjects > tab Settings > tab General > group Form). Support for password editing in a grid - We now support editing a password column in the grid (based on a Password domain control). This was already possible in the form. Previously, the password column remained read-only. Responsive pagination - We have made the pagination element responsive. This change solves some issues with pagination showing incorrect pages and wrong links. Pagination will now only show a certain number of links, with a minimum of 3-4, depending on the available space. This change prevents pagination links from moving to the next line in almost all situations, and it shows more links when more space is available. It also fixes the overflow of pagination to a second row on a device with a small screen in comfortable mode. New in Model insightnewModel Insight now shows the reference id when clicking on a detail tab page header.Model Insight is a tool that helps you find, for example, which column, table, and variant you have selected in the Universal GUI. See: Model insight. Support for HTML in preview componentWe have added support for previewing HTML data in the preview component. Previously, we supported file and URL types. Changed and new in process flowschanged new'Change filters' process action no longer clears search field - The Change filters process action no longer clears the search field. Now, it functions the same as in the Windows GUI. Process flow indicator - An indeterminate progress bar will now appear underneath the top bar once a process flow has been activated within the current active subject.Progress bar for a progress flow Translation in Scheduler based on IAMchangedThe Scheduler would translate information on a page based on the installation settings of a browser, which would be undesirable in some cases. This translation is now based on the IAM language settings of a user. 'Clear' button only on hoverchangedOn non-touch devices, the lookup Clear button will be shown only on hover to give more space to the content. Improved messageschangedIf the Start empty with filter setting in a Subject was enabled, but the user did not filter, the Universal GUI would display "No result" as a message in the grid and card list. This did not explain the problem to the user. Now, the message "Search or filter to view data" will be displayed instead. Community idea A user now receives a comprehensible message if the meta source cannot be reached while logging in. Minor fixes and tasksFixes in grids and formsIn a grid, adding was only possible if editing was allowed. Without editing permission, the add button would not show up. Now, it is possible to add data without permission for editing. This fix also solves the reverse problem, that in some cases, the add button was visible without functioning. The permissions for adding and editing are set in the menu User interface > Subjects > tab Settings > tab Permissions > group Data manipulation. After selecting a lookup value in a lookup popup, the GUI would not restore the focus to the lookup field. The same occurred when canceling the popup. This has been fixed. The lookup field now receives focus after the popup is closed. Tab text combined with a badge is now properly aligned in compact mode. On a small screen or with a long label, the label of a datetime control could overlap with the date picker icon. This has been fixed. The label now takes up less width. When you opened a form with a double click, sometimes all the text in the application was selected. This has been fixed. Identity columns are now prevented from being marked as mandatory when adding a new record. The grouped grid will no longer cut off headers when they reach a new column.Fixes for tasks and reportsWhen you cleared the Layout checkbox in the Performance tab of a task or report, the Universal GUI ignored this and still asked for the layout via Indicium and thus the network. This has been fixed. As a result, the Universal GUI now uses the Software Factory's Mandatory and Column type settings for report and task parameters. You can find the Layout checkbox in the menu Processes > Tasks/Reports > tab Settings > tab Performance. The settings Mandatory and Column type (editable, read-only, hidden) are available in the menu Processes > Tasks/Reports > tab Task parameters > tab Form. The taskbar will no longer be in overflow if left-aligned.Fixes for process flowsWe have improved the way a process flow continues in a just-loaded detail subject. Some issues occurred when dispatching follow-up actions, for example, with the Go to row process action. The problem was caused by follow-up actions that sometimes selected the parent to continue in. The Universal GUI would show an error when starting a process flow and quickly closing the screen. This problem was due to a timing issue. It has been fixed.Fixes for user interfaceWe have fixed a bug where the toolbar would not be hidden even though the screen type had Hide main action bar set to 'true'. A hierarchical tree would crash without a parent or primary key column. Now, it will show a clear error instead. The Allow sort configuration option in a Subject had not been implemented correctly. This has been fixed.MiscellaneousSchedulers with an hourly time scale now correctly start the day at 0 hours instead of 24 hours. When using a progress bar within a card list, the progress bar would not be rendered properly. This has been fixed. In the Maps component, when you selected the Use custom label column checkbox (menu User interface > Maps > tab Tables > tab Maps) but kept the field Label column empty, the Universal GUI would show the subjects' Display column value. Now, it will show no label text at all underneath the marker. What we will be working on next sprintThe next sprint we will be working on:Drag and drop - Research of technical issues and possibilities. Material UI upgrade - Universal GUI uses the third-party library Material UI for certain graphical components. This library has its own releases. We will upgrade the Universal GUI to a recent Material UI version. Tree component expand/collapse all - We will add the option to expand and collapse all items in a tree in one go. Pop out document to new browser tab - This will replace the floating document functionality of the Windows GUI and open a new browser window with the related document. Questions or suggestions?Questions or suggestions about the release notes? Let us know in the Thinkwise Community!.
Hello everyone,We have released a hotfix for Indicium Universal that fixes an issue which was introduced in the latest release (2023.1.15.0). The issue affects the sending of emails for resetting passwords and two factor authentication. In both of these cases, the emails could no longer be sent.The hotfix for this issue is available in TCP with version number 2023.1.15.1. Our apologies for any inconvenience caused by this issue.
Hello everyone,In this sprint, we have fixed some issues for the Windows GUI.You can read more about the Windows and Web GUI's features, in the GUI user manual. We will keep you updated regularly about the Windows and Web GUI's progress.Download Windows GUI 2023.1.15 here. Download Web GUI 2023.1.15 here. Minor fixes and tasksWindows GUI We have fixed that auto-refresh on a grid would not start after executing a task. The problem occurred when multiple rows were selected in the grid, and the auto-refresh was paused. If a user then executed a task, the grid would be refreshed and the selection removed, but the auto-refresh would not be restarted in the grid. We have fixed some problems with keyboard navigation in the Windows grid. The following key combinations will now work again as expected: [Tab] (or [Shift-tab]) + the horizontal arrow keys will jump to the previous or next cell. When already in the last cell, the focus will jump to the first cell in the next row. The reverse is the case for the first cell and backward navigation ([Shift-Tab] + [left arrow key]). [Enter] will jump to the next editable cell. When already at the last editable cell in a row, the focus will jump to the first editable cell in the next row. The reverse is the case for the first editable cell and backward navigation ([Shift] + [Enter]). We have also fixed a problem in navigating a grouped grid. Questions or suggestions?Questions or suggestions about the release notes? Let us know in the Thinkwise Community!
Hello everyone,In this sprint, we have worked on support for the next Thinkwise Platform release, and solved some issues.You can read more about Indicium's features in the Indicium user manual.We will keep you updated regularly about Indicium's progress. About IndiciumTwo types of the Thinkwise Indicium Application Tier are available: Indicium: for use with the Universal GUI and via APIs. This version uses the full range of Indicium functionality.Download Indicium release 2023.1.15 here. Indicium Basic: for use with the Windows GUI and Mobile GUI. This basic version does not support, for example, system flows and OpenID. No 2023.1.15 release available. Indicium - Changes Minor fixes and tasksIndicium adds Server-Timing headers to the response to provide extra information on how long certain things take during the request. When importing, this could lead to a gateway error, depending on where Indicium is hosted and how many rows were imported due to a limit on response header data. To avoid this, if more than 20 Server-Timing values have been added, Indicium will now aggregate the entire duration for each Server-Timing category/key instead of adding separate entries per imported row. We have fixed a crash that would occur when using the process action Application connector on an application without a fallback language. The fallback language is and will remain optional. We have fixed an issue that caused File System storage configurations not to work when running Indicium on Linux. When importing a row, Indicium only checked if allow_confirm was allowed on the result of the subject's layout procedure. Now, if the import resource has been created with add_new_rows or update_existing_rows set to true, Indicium will also fail the import of a row if allow_add/allow_update is not allowed according to the layout result. Questions or suggestions?Questions or suggestions about the release notes? Let us know in the Thinkwise Community!.
Hi everyone!We’ve released the following platform improvements this week: IAM 2022.1 and up20230403 - Performance improvement clean up system flow log The task to clean up system flow logging could potentially cause a lot of wait times. This service fix significantly improves the performance of this task, so that the wait times no longer occur. SF 2022.2 and up20230331 - Show display type option Universal GUI version 2023.1.15 and up now supports display types for table tasks and table reports. After installing this platform improvement, the field will be available in the Software Factory. For example, in the Table task screen: SF 2023.120230405 - Fixed datetime check point in time In the check if the chosen point in time is in the future, the time was converted to UTC. However, it already is converted to UTC time by the GUI and only shown as local time. So the conversion was not needed and could result in false error message that the chosen point-in-time is in the future. This has been resolved by removing the conversion to UTC in the Default procedures.
Hi everyone!We’ve released the following platform improvements this week: SF and IAM 2023.120230330 - IgnoreFloatingLabelWidth support A new extended property is now available. It is called 'IgnoreFloatingLabelWidth' and ignores configured label widths in the model for form columns, task- and report parameters when the form control type in the Universal GUI uses a 'floating label'. Enabling this extended property will match the Universal GUI's form configuration more closely to the Windows GUI's. For example: given the following form configuration in the Software Factory: The Windows GUI and Web GUI will visualize the form as follows: The orange color indicates the full-form element widths, including the label. The green color indicates only the input field widths. The current behavior of the Universal GUI interprets this as follows: When you add the extended property 'IgnoreFloatingLabelWidth' and set it to 'yes', the label width will no longer be considered in the field width calculations when the control uses a floating label: This matches the Windows GUI's form layout more closely for input fields and allows for a smooth transition between GUI technologies. Note: this may result in large labels getting too little space as floating labels in small input fields. In the upcoming 2023.2 release, this will become the default behavior for any model that does not yet support the Universal GUI as a target platform. Any model with the Universal GUI as a target platform will remain unmodified unless the extended property 'IgnoreFloatingLabelWidth' has been set to 'yes'. The reason for not changing the default behavior for models supporting the Universal GUI as the target platform is that you may very well have taken the label width impact into consideration when designing the form layout for Universal GUI applications. This service fix also enables this setting for the Intelligent Application Manager. In addition, this service fix also enables support for variant-specific parameter ordering for tasks and reports.
A hotfix release of the Universal GUI was requested to fix the latest production release:We've decided to revert this fix from the 2023.1.14.0 release: Previously, switching between documents would briefly show the form with only one column, despite there being room for multiple columns. Also, the action bar would become visible with a slight delay. The fix was causing crashes on entrance of a new subject on iOS and Firefox in some cases and we also noticed incorrect representation of the breakpoint screen type in all browsers.This item is back on our backlog now.The 2023.1.14.1 release is now available to download in TCP.
Hi everyone!We’ve released the following platform improvements this week:IAM 2022.1 and up20230324 - Changing default status for model defined prefilters When editing prefilters from the Windows GUI or Web GUI, it is possible to deviate from the model settings by indicating whether a prefilter should be active by default. However, this setting was not saved in the IAM user preferences. As a result, the change was lost after restarting the GUI. We have corrected this so that the changes are saved again in IAM. IAM 2023.120230320 - API change for update data migration source We have released a platform improvement to address the job_id parameter of the add_job_to_update_data_migration_source_version task. After running the improvement, the API call can look as follows: Option 0 - Obtain from database: POST [indicium]/iam/sf/add_job_to_update_data_migration_source_version{ "model_id": "[MODEL]", "branch_id": "[BRANCH]", "select_data_migration_source_version_option": 0, "runtime_configuration_id": "default"} Option 1 - Specific model version: POST [indicium]/iam/sf/add_job_to_update_data_migration_source_version{ "model_id": "[MODEL]", "branch_id": "[BRANCH]", "select_data_migration_source_version_option": 1, "from_branch_id": "[BRANCH]", "from_model_vrs_id": "2023-03-18T12:00:20.859Z"}
March 24, 2023Full release 2023.1.14 Fixes: Since the last beta release, the clear and dropdown buttons of the lookup control were misplaced when the grid column got too narrow, causing the text to be out of view. Now, they disappear (again) when the grid column gets too narrow. We fixed regression on Safari and Chrome on iOS. Some screens would show an error due to toolbar positioning when the subject is opened. Because of this fix, the following fix is no longer available for iOS devices,: Previously, switching between documents would briefly show the form with only one column, despite there being room for multiple columns. Also, the action bar would become visible with a slight delay. These issues have been fixed. Update: we reverted this fix completely for all cases as part of the 2023.1.14.1 hotfix release. Hello everyone,In this sprint, we have added support for changing the row height in a grid, tooltip translations on multiple components, persistent navigation URLs for history browsing, performance improvements, and more.A full overview of all features, changes, and fixes can be found below.As always, we have made a demo for you: try it here. Before trying it out, press 'Clear Cache' on the login screen. You can read the GUI manual to get familiar with the Universal GUI.We will keep you updated regularly about Universal GUI's progress. Universal GUI version 2023.1.14Do not forget the documentation and be sure to keep the following in mind:A modern browser is required to access the Universal GUI, e.g., a recent version of Chrome, Firefox, Edge, or Safari mobile. Using the Universal GUI with IE is not supported. The Universal GUI must be deployed on the same server as Indicium or an allowed origin in appsettings.json. The Universal GUI only works with version 2021.2 and up of the Thinkwise Platform. Make sure you run all hotfixes on IAM and the Software Factory that you plan to use for the Universal GUI. Make sure you are using the latest version of Indicium.Download the Universal GUI version 2023.1.14 here ContentsUniversal GUI version 2023.1.14 New Tooltip translations on prefilter buttons, task and report tiles, and task and report buttons Tooltip support on form editors New process action: Copy to clipboard Process flow progress indicator Configurable row height in grid Navigation URL now uses application alias when present Changed Performance improvement grid Performance improvement lookups Minor fixes and tasks What we will be working on next sprint Questions or suggestions? New Tooltip translations on prefilter buttons, task and report tiles, and task and report buttonsThe Universal GUI now displays the configured tooltip translation on prefilter buttons, task and report tiles, and task and report buttons.If a task has a keyboard shortcut, it will be displayed next to the configured tooltip translation.Tooltip on a prefilter buttonTooltip on a task buttonYou can configure the translation in the menu User interface > Translations or in the object, task, or report. HTML formatting is allowed in tooltips. For example, to make part of a text stand out or add a bullet list.The example below shows the translation for a prefilter: Tooltip support on form editorsThe Universal GUI now displays the configured tooltip translation on editors of the general form and task/report parameter input. You can configure the translation in the menu User interface > Translations or in the subjects column of the task/report parameter. HTML formatting is allowed in tooltips, for example, to make part of a text stand out or add a bullet list.The customized tooltip overrules a potential tooltip on an overflowing label or value within the editor, to prevent multiple tooltips from being displayed.Tooltips are supported now on all editors, except for:HTML Checkbox Radio button LabelTooltip on a text editor New process action: Copy to clipboardThe Universal GUI now supports the new process action Copy to clipboard. This action allows you to take a value and copy it to the user's clipboard.The value can be a single-column value, multiple-column values combined, or something else.Depending on the browser or device, a user may get a question for permission to copy information to the clipboard.This process action is only available through a hotfix on the Software Factory/IAM version 2023.1. Process flow progress indicatorAn indeterminate progress bar will now appear as a thin line underneath the top bar once a process flow has been activated.A progress bar for a progress flow Configurable row height in gridIt is now possible to define the row height of the grid, just like in the Windows GUI. This means that the Universal GUI will take the setting Row height (px) into account.You can set the row height in the following locations:menu User interface > Subjects > tab Subjects > tab Default settings > tab Default settings > group Grid menu User interface > Subjects > tab Subjects > tab Default > tab Settings > group GridFor compact mode, the exact value provided will be used. For comfortable mode, padding is added to this setting. If comfortable mode is active, the row height value will always be at least the minimum touch target of 44px.Limitations for this iteration:When in edit mode, the controls do not scale. When the grid is editable, the row height value will be at least 36px.The grid header height follows the grid row height but adds a bit of spacing to emphasize the separation between the rows and the headers. Both the grid header and summary row have a maximum height cap, and the summary row has a minimum height of 40px. Navigation URL now uses application alias when presentThe navigation URL that is used for history browsing now uses the application alias. This makes it persistent and suitable to be bookmarked and shared. Changed Performance improvement gridWe have done a performance optimization on the grid component. Actions like refreshing a grid, switching records, and editing in the grid should all benefit from this optimization. Rendering additional records in the grid due to scrolling should also be faster. Performance improvement lookupsWe have optimized the loading time of lookups when entering edit mode by removing unnecessary network requests. This improves the performance on slower connections. Minor fixes and tasks When opening multiple screens with auto-save enabled, sometimes the auto-save stopped working correctly. This has been fixed. If no records were available in the default-editable grid after applying a filter, selecting Cancel would result in an error. This has been fixed. Combo images are now aligned horizontally in compact mode. This fix removes some safety guards on SVGs in combo images. Note that poorly formatted SVGs seemed to work before this change, but now might give different results. Ensure that there is no height/width information in the SVG if you do not intend to influence those properties. The GUI will size the SVG correctly, but it will try to conform to what the developer indicates as much as possible while keeping the SVG within bounds. Previously, switching between documents would briefly show the form with only one column, despite there being room for multiple columns. Also, the action bar would become visible with a slight delay. These issues have been fixed. Note: we've reverted this fix as part of the 2023.1.14.1 hotfix release and will take a look at it later on. We fixed regression on Safari and Chrome on iOS. Some screens would show an error due to toolbar positioning when the subject is opened. The HTML control no longer overlaps other controls when placed side-by-side. HTML fields would not show up when placed behind another field. This has been fixed. The Universal GUI no longer shows an error after closing a lookup dialog. This would happen after double-clicking a record if the lookup dialog only contained a grid component. If the Universal GUI encountered a view in which duplicate primary keys were found, the grid would crash with a nondescript error. We have created a clear error message for this situation:Since the last beta release, the clear and dropdown buttons of the lookup control were misplaced when the grid column got too narrow, causing the text to be out of view. Now, they disappear (again) when the grid column gets too narrow. What we will be working on next sprintThe next sprint we will be working on:Catching up with quick wins and quality-of-life stories. Performance optimization for showing lookup translations in the grid. Questions or suggestions?Questions or suggestions about the release notes? Let us know in the Thinkwise Community!
Hello everyone,In this sprint, we improved the behavior of the Use process procedure setting and fixed an error that could occur when switching screen type.You can read more about the Windows and Web GUI's features, in the GUI user manual. We will keep you updated regularly about the Windows and Web GUI's progress.* Download Windows GUI 2023.1.14 here.* Download Web GUI 2023.1.14 here.Contents of this releaseChanged Process actions will always execute the logic on completion if ‘Use process procedure’ is set Changed the default timeout for windows - indicium basic connections Minor fixes and tasks Questions or suggestions?Changed Process actions will always execute the logic on completion if ‘Use process procedure’ is setWindows GUI With the setting Use process procedure, you can reference and use returned values (output parameters) from a process action in a process procedure.Previously, the Use process procedure check and the actual procedure call were only evaluated on completion if a process action had follow-up actions.For platform version 2023.1, this procedure will always execute on completion if Use process procedure is set. You can find this setting in the menu Processes > Process flows > tab Process actions > tab Performance.Changed the default timeout for windows - indicium basic connectionsWindows GUI The default timeout for windows - indicium basic connections is changed from infinite to 100 seconds We've added a new global extended property "indiciumRequestTimeout" so that you can change this to whatever you want.This setting is in milliseconds. The value '-1' can be used for an infinite timeout.Minor fixes and tasks - Windows GUI An error would occur if a detail screen contained a form list component, and the user changed the screen type in their User preferences tab in the ribbon. This has been fixed. Questions or suggestions?Questions or suggestions about the release notes? Let us know in the Thinkwise Community!
Hello everyone, As technical writers, we publish release notes and documentation for the Thinkwise products every release. In addition, we structurally improve and extend the Thinkwise Documentation.Depending on the extent and impact of the structural changes, we will keep you informed about them. Some changes you may have already noticed; others may be new to you.You can find the Thinkwise Documentation at docs.thinkwise.com. Contents Clickable breadcrumbs ‘Platform deployment' now ‘Environment setup’ Containerized setup Getting started Expandable screenshots Questions or suggestions? Clickable breadcrumbsThe breadcrumbs above each page in the Thinkwise Documentation are now clickable. This facilitates navigation through the various levels of information.Clickable breadcrumbs ‘Platform deployment' now ‘Environment setup’An important change has been made to the ‘Platform deployment’ manual. It has been completely restructured. Each platform now has its own section, improving the overview of what you need to deploy the Thinkwise Platform in a specific environment. ‘Platform deployment’ has been renamed ‘Environment setup’. In addition, the Thinkwise Deployment Center has been given its own manual: 'Thinkwise deployment'. Further improvement of these manuals is an ongoing process in smaller steps.Read ‘Environment setup’‘Platform deployment’ is now ‘Environment setup’Containerized setupAs you can see in the screenshot above, we have added an entirely new chapter to the Environment setup. In the ‘Containerized setup’ guide, you can read how to deploy the Thinkwise Platform in a containerized environment.Read ‘Containerized setup’ Getting startedIf you have just finished the Thinkwise associate training and started working with the Software Factory, you may still need some help with the basics. To assist you, we have included a "Getting Started" manual that repeats the basic steps. For more detailed information, you can read the more specialized manuals in the Thinkwise Documentation.Read ‘Getting started’ Expandable screenshotsSome chapters in the Thinkwise Documentation contain a lot of screenshots to give you more assurance that your are on the right path. In some cases, to improve readability, we are going to make these screenshots expandable.See some expandable screenshots Questions or suggestions?Questions or suggestions about the release notes? Let us know in the Thinkwise Community!
A hotfix release of the Universal GUI was requested to fix the latest production release: The GUI no longer shows an error after closing a lookup dialog. This would happen after double-clicking a record if the lookup dialog only contained a grid component. The 2023.1.13.1 release is now available to download in TCP.
Enter your username or e-mail address. We'll send you an e-mail with instructions to reset your password.
Sorry, we're still checking this file's contents to make sure it's safe to download. Please try again in a few minutes.
OKSorry, our virus scanner detected that this file isn't safe to download.
OK