Currently, it is not possible to set the initial object view tab ID dynamically. The suggested workaround is to create multiple overlays, one for each tab you want to display initially.
Timestamp: February 14, 2024
Tags: Workaround
Yes, blue is currently the only option for metric card outlines in tabbed layouts.
Timestamp: February 14, 2024
Tags: Upcoming fix
Use a variable to track the current theme and conditionally display different copies of the widget with different styling for light and dark modes. Additionally, consider customizing the node and text colors to improve visibility in both modes.
Timestamp: February 14, 2024
Tags: Workaround
To resolve the unknown Marketplace packaging error, you should: disable the marketplace configuration, check which components are problematic and fix them, clear changes without saving, and then implement the component/variable fixes with the marketplace configuration enabled and untouched.
Timestamp: February 14, 2024
You can use Automate to trigger additional Actions based on outcomes of the first Action.
Timestamp: February 14, 2024
You can use a top-level Workshop module that remains the same, then embed the actual Workshop module inside it. You can also possibly use promoted variables for routing, such as using page=page1
instead of /page1
.
Timestamp: February 14, 2024
You can convert the contents of the Markdown widget into a string variable and then export that string to the clipboard by configuring an Export on-click event.
Timestamp: February 14, 2024
To access a Workshop module that is not visible in the object view page after saving, you should ensure that you selected Publish. Doing so will ensure that the object view uses the latest saved version of the module. If the Publish button is not selectable, or the Workshop module seems to be disconnected, you can manually paste the module ID into the code editor in the object view editor. To recover the module ID, navigate to the object type in Ontology Manager to view all Workshop modules in which the object type is used. The module ID should include Object View Tab
in the title unless it was renamed.
Timestamp: February 14, 2024
Use the primary key of the object as a promoted string variable, and have an object set variable that is filtered by the primary key.
Timestamp: February 14, 2024
Embedded Workshop modules generally improve the initial load time because they are loaded lazily after the initial render. However, if there are multiple levels of embedding that are all visible on the initial page, the initial load may be slower due to a "waterfall" effect. However, if the larger module is broken up so originally non-visible parts are split into embedded modules, there may be a slightly faster initial load.
Timestamp: February 14, 2024
Hidden properties are not accessible in applications like Workshop. As a workaround, you should change the visibility of the property to Normal
, then configure the Workshop module to hide the property in the user interface where necessary.
Timestamp: February 14, 2024
If the LLM is changing the format of the output, explicitly instruct the LLM in the prompt to not format the output.
Timestamp: February 14, 2024
You can auto-populate the timezone in the Date and Time Picker widget by using IANA timezone codes (for example, Asia/Dubai
) instead of GMT time codes.
Timestamp: February 14, 2024
You can create multiple layers on a chart and set one of those layers as a time-dependent property.
Timestamp: February 14, 2024
The module header must be visible for the dropdown menu related to state saving to appear in the interface. If the module header is hidden, the state saving option will not be accessible.
Timestamp: February 14, 2024
To reset a filter variable when changing a section tab, use the Hide default tabs option and replace the default tabs with a tabs widget that allows configuring events.
Timestamp: March 18, 2024
You can create a maximum timestamp aggregation variable and use that to filter the object set. This will result in an object set containing the object with the latest timestamp.
Timestamp: March 6, 2024
No, manual rearrangement of objects is not supported in Workshop. The order can be controlled only by sorting using a property.
Timestamp: March 28, 2024
When exporting object data from Workshop, there is a 200,000 object limit for exports involving regular property types and 10,000 object limit for exports involving function-backed derived columns.
To export beyond the above limits, you can first materialize the view you're attempting to export as a dataset and then download that dataset. There are several options for doing this, such as passing the object set to Quiver and then saving the object set to a dataset with Quiver.
Timestamp: April 4, 2024
The solution is to use the Workshop module interface, which allows you to configure object sets to pass between Workshop modules when using Open in Workshop events. Additionally, Carbon's discoverable modules can be used to configure an Open in action in Object Explorer.
Timestamp: March 19, 2024
No, it is currently not possible to pre-load Slate iframe widgets in Workshop.
Timestamp: April 9, 2024
The tab name is set to the Module Header Title value; change this value to change the tab display name in the browser for a Workshop application.
Timestamp: March 6, 2024
In Workshop, use a variable transform that unions the two filter output object sets.
Timestamp: April 18, 2024
You can use conditional formatting for the metric card widget to reference other variables in the Workshop application. You can create a numeric variable that represents the stale value using the Between times
transform. This variable can then be used to control the conditional formatting of the metrics card.
Timestamp: April 15, 2024
Variable transformations on strings are executed locally within the browser.
Timestamp: April 18, 2024
You cannot directly increase the maximum number of allowed groupings in the Pivot Table widget due to a set limit intended to prevent overloading the frontend. However, a workaround is to add "hidden groupings" to your table. This method allows users to swap between these hidden groupings on the UI, effectively managing more groupings than the limit without directly increasing the allowed number. This approach maintains performance while offering flexibility in data presentation.
Timestamp: April 19, 2024
Tags: Workaround
While there is no limit encoded in Foundry, browsers like Chrome have a limit of 6 inflight requests per domain.
Timestamp: April 18, 2024
A workaround is to express the logic from the derived column as a function backed column, which allows sorting up to 1000 rows.
Timestamp: April 18, 2024
Tags: Workaround
It is currently not possible to display the icons based on a boolean value but a workaround solution is to use a function-backed property. You could also consider splitting the data layers based on the boolean field and then have a static icon for both the layers.
Timestamp: April 18, 2024
No Date Specified
in a table in Workshop when the date property is null?The solution is to use a derived function-backed column, as there are currently no null value configuration options in Workshop at the moment.
Timestamp: April 18, 2024
The Slate graph widget can be used to display an interactive weighted graph from an adjacency list. This widget allows the specification of edge labels and provides interactivity such as moving nodes around and selecting them.
Timestamp: April 18, 2024
There are two suggested methods:
Timestamp: April 18, 2024
No, it is not possible to disable the "Configure columns" feature for end users in view mode.
Timestamp: April 17, 2024
You can create a new string array variable and assign it the Multipass attribute for groups of the current user. This variable can then be used to perform a frontend check of the user's group memberships.
Timestamp: March 5, 2024
If the media reference is coming from an object, you can use the Object List widget. In the Property Configuration, select Add Media and reference the property that has the media. Then, use the On Object Selection configuration on the widget to trigger the desired event.
Timestamp: June 10, 2024
Yes, you can modify a variable inside your loop layout's embedded module; if it is interfaced with a variable in the parent module, then the value will change in the parent module. Learn more about interface configuration.
Timestamp: May 30, 2024
Ensure that the .xlsx
extension is included in the Allowed File Extensions configuration for the Media Uploader widget.
Timestamp: May 19, 2024
Create a string variable through Variable Transform with a String concatenation board. In the string concatenation board, insert a date variable and hover over the date variable to access the Format value section that allows you to change the format of the date.
Timestamp: June 13, 2024
Property List inline editing uses the inline action for the property that is configured in Ontology Manager. Inline editing in the widget can only be enabled if one exists for the property.
Timestamp: July 30, 2024
This can be achieved by configuring a button widget with On Click -> Export -> Export Type -> Clipboard -> Export Content Type -> String Variable and configuring the string variable to be copied to clipboard.
Timestamp: July 9, 2024
The behavior is expected if you are running the function with the same values as it fetches the cached results. You can work around this by passing the current timestamp or a nonce
value that will force the variable to be recomputed.
Timestamp: June 3, 2024