Visio ComboBox: How to add a Clear Value

After your current setvar, you can add something like “:clear”. This will add another option to your combobox to clear the value. I tried implementing this, but this is where …

Visio ComboBox: How to add a Clear Value

After your current setvar, you can add something like “:clear”. This will add another option to your combobox to clear the value. You can then do some magic in a …

Buffer size on SLScripting

Hi Samuel, SLScripting is currently a 32-bit process that, by default, is shared across all elements running on a given agent. Consequently, the available memory is also shared among these …

Add background color to the table cell from GQI

Hi Baranisudha You have 2 options to add conditional coloring to a table cell based on the cell value: Conditional coloring: here you can configure different colors for the cell …

Does Trending have any additional costs?

Hi Dan, Yes trending comes with a cost and you should always make sure you enable trending only for the most relevant parameters. This is not to say that your …

DMA + DOM upgrade

Hi Riccardo, Can you check the list of processes running and their memory usage? I assume Cassandra is biggest consumer of the RAM, it takes around 8GB by default, this …

Low Code App Custom View

Hi Harald, Unfortunately, this is not yet possible in an LCA. However, you can suggest it as a feature request using the following link. On a related note, with the …

Empty license tab

Hi Arunkrishna, I’m not quite sure this will be a Cube issue can you check the license information via the client test tool ? You should see something like this …

GetPartialTableMessage in logger tables

Hi, Retrieving the full table content is not possible because of the underlying architecture of the different technologies in the background. For example with Cassandra, data is stored with the …

List elements with adhoc GQI data source

Hi Manuel, What you’re looking for is GetInfoMessage with InfoType.ElementInfo. var request = new GetInfoMessage(InfoType.ElementInfo); var responses = dms.SendMessages(request); var elements = responses.OfType<ElementInfoEventMessage>(); However, depending on what you’re trying to …