Dashboard Dynamic Visuals – Unknown Grid Component

Hi Miguel, Could you try restarting the webserver? (Internet Information Services (IIS) -> Select your server -> Restart) The soft-launch options are cached in the webserver. Afaik a DataMiner restart …

Finding the parent Element in an automation script

Hi Elvio, With this snippet you can find fid the parent element. Element e= engine.FindElement(“DVE_E.1″); if (e.RawInfo.IsDynamicElement) { engine.GenerateInformation(${e.RawInfo.DveParentDmaId}/{.RawInfo.DveParentElementId}”); } note: This is an internal call and we do not …

Bulk script validation

Hi Dave, As far as I know there is no possibility yet to validate scripts in bulk. It could indeed by very hand to have this feature available. I suggest …

unit tests: Metadata dll not found.

Hi Chian This is a known problem (something that Visual Studio doesn’t properly clean up) when migrating from packages.config to PackageReference. The fix is very easy though: Open the csproj …

How to disable the button during the Pressed method?

Hi Michiel Would it be an option to do something like this? private void OnPressed(object sender, EventArgs e) { Button.IsEnabled = false; // Method body Button.IsEnabled = true; } Setting …

Get script outputs from connector

You can make use of the Skyline.DataMiner.Core.DataMinerSystem.Automation (for automation scripts) or make use of the Skyline.DataMiner.Core.DataMinerSystem.Protocol (from protocols) NuGet libraries. For example: IDms thisDms = protocol.GetDms();  OR  IDms thisDms = …

Dashboard table filtering with column values

Hello You can achieve this in multiple ways: You can rightclick the column header to filter on that column. You can add a query filter visualization (soft-launch), add your query to …

Map marker position

Is the width/height and anchor correctly configured of the marker image you’re using? This can be configured in the config xml of the map (see docs). If these are not …

Map separator type order

The order of the layers should indeed be respected. I can’t immediately reproduce this. Which DataMiner version are you using? Can you share your map config xml?