WELCOME TO THE COMMUNITY
find what you are looking for or ask a new question

Raluca-Mirabela Lupu

MVP

SDK Action
10.05.2021 18:50

Hello, I tried to use "ConfigEditableDropDownList" for input parameters and it will return List object I uploaded the project sdk but not working. How to configure the type parameter ConfigEditableDropDownList? Best regards, Raluca Lupu

Hello, The information entered in the dictionary is saved in the database in the table WfElements. You can see all the entries in the dictionary by the next query select * from WfElements where wfd_dtypeid= (id)form_type Validation for dublicate information: if exists ( select top 1 1 from WfElem

Hello, To delete all the rows in the list I created the following code, written in c # via the SDK actions public class DeleteRowFromItemList : CustomAction { public override void Run(RunCustomActionParams args) { var list = args.Context.CurrentDocument

SDK Action
07.04.2021 21:00

Thank you very much, Raluca Lupu

SDK Action
07.04.2021 19:24

What would be the best method to remove rows from the item list of an instance inside an SDK plugin in order to make use of them in C# code? I tried to remove rows from the item list in the code C# (SDK plugin ) using function : WebCon.WorkFlow.SDK.Documents.Model.ItemsLists.ItemsList.RemoveAt(i

SDK Action
25.03.2021 00:44

What would be the best method to get the attachments of an instance inside an SDK plugin in order to make use of them in C# code?