Spectrum Analyzer – Default units Y-Axis

Hello Miguel, as discussed internally, a possible solution could be to make a shared preset with the desired unit and to set that preset on elements where you need the …

Errors when setting on table

Hi Joshua, This kind of error typically points to a race condition or a timing issue during concurrent access or modification of a table row. For example, if multiple QAction …

Automation Script – Lookup by Display Key

Hi Nick, Instead of: var indexKey = (int)filter.FilterType == DisplayFilter ? protocol.FindAssociatedDisplayKeyColumn(tableInfo) : protocol.FindAssociatedPrimaryKeyColumn(tableInfo); var column = element.GetTable(tableInfo.ID).GetColumn<string>(indexKey.ID); Have you tried: var column = (int)filter.FilterType == DisplayFilter ? element.GetTable(tableInfo.ID).GetDisplayKeys() : …

Issue with variables on a LCA

Hi Ana, The Line & Area chart only supports parameter data and queries. DOM instances can not be added as a data/filter source since the component has no idea what …

Group Alarm Acknowledge

Hi Ramesh, As far as I know, as mentioned in Take ownership of a correlated alarm – DataMiner Dojo, acknowledging a new correlated alarm will not acknowledge the base alarms. …

Dom editor or connector device menagment

Hi Davor, Seems like this question went a bit under the radar. Have you managed to move forward with your low-code app? From what you’re describing, and if you are …

QAction set parameter not working

Hi, The write parameter has setter=”true” defined. In such case it will set the value on the read parameter 18009, but if there is then a trigger on the write …

Filter data when typing name in the dynamic dropdown

Hi Niranjan, You can achieve that using the following option in your dropdown: new DropDown { IsDisplayFilterShown = true, Width = 200 }; More info: Property IsDisplayFilterShown | DataMiner Docs

LCA Identifier per browser tab

Depending on the browser you might be able to have something like containers for tabs (works in firefox) where basically all container tabs are different private browsers

GQI using cache data

Hi Kristopher, GQI (using SLHelper) internally caches protocols to increase performance when executing these queries. It looks like the top table uses an outdated version of the protocol that is …