Unable to install Datamine installer on Window Server 2022
5th May 2025
Hi, The error seems to indicate that you do not have the required .NET version installed. More information about this can be found on our docs here. Kind regards,
Answer
5th May 2025
Hi, The error seems to indicate that you do not have the required .NET version installed. More information about this can be found on our docs here. Kind regards,
5th May 2025
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 …
5th May 2025
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 …
5th May 2025
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() : …
5th May 2025
Hi Alberto, We’re currently in the process of validating usage of DataMiner with Windows Server 2025. To ensure compatibility we’re performing a thorough examination which we’re hoping to wrap up …
5th May 2025
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 …
4th May 2025
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. …
2nd May 2025
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 …
2nd May 2025
Hi Niranjan You can create element using the class library: Class library introduction | DataMiner Docs There are some examples in documentation how you can do that: Element creation | …
2nd May 2025
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 …
2nd May 2025
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
2nd May 2025
Hi Apurva, You can achieve this by adding query column data as a filter to the table. Only the columns that are present as a filter will be shown. Note …
2nd May 2025
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
2nd May 2025
Hi Gerwin, There is currently no way to control the path in a flow or when executing actions. We have some tasks on our backlog to add more operators to …
2nd May 2025
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 …