Nintex Form Object Model 2013: Render various types of properties
Goal: Requirement is to create the various types of properties like Textbox & checkbox and dropdown list in Nintex object model. Background: To read about the Nintex forms object model , please read this blog. Steps: To achieve above functionality only we required to work on the ControlProperties class. By taking the ref. with this blog Nintex forms object model . The textbox already already implemented on the ref. post. So render the dropdown and check box only required to add the following lines of code in the ControlProperties class file. so below is the code using System.Runtime.Serialization; using Nintex.Forms; using Nintex.Forms.FormControls; using System.Collections.Generic; using Nintex.Forms.Resources; namespace CustomControl { public class ControlProperties : BaseBindableFormControlProperties { /*Render Text box list*/ [DataMember, ControlPropertyInfo( DisplayName = "Display Text", Des