Hi,
Problem:
I receive data as a JSON and I am parsing it to variables in a QAction.
Now I want to put these Data (variables) in a Table.
I found this Method (SetParameterRow) https://docs.dataminer.services/develop/webservices/WS_v1/WS_Methods_v1/SetParameterRow.html
The Method is not defined in my case, even I imported Web relations? Any Help or Hints ? Maybe there is another method to fill tables like AddRow DeleteRow ?
Thank you in Advance
Hi,
The method you found is for DataMiner's Web API, within a QAction and to set it on your own element you do not need to do it like that.
You can use methods like AddRow | DataMiner Docs or DeleteRow | DataMiner Docs
You can also check other methods available from a QAction here Interface SLProtocol | DataMiner Docs and also check our video library, specifically, this video about QActions Driver Development Initiation - Basics on QActions (module 01.06) - DataMiner Dojo
to add on: If you use AddRow to add rows into your table, do remember to also add https://docs.dataminer.services/develop/api/types/Skyline.DataMiner.Scripting.SLProtocol.SetRow.html for when the key already exist.
ok, thanks for the fast response!