Posts

Organization Re-Structure Control : Add Sub Nodes using JQuery Modal

Image
Hi Guys, This is a continuation of my previous post .My colleague requested me to allow the user to add new sub nodes. I used JQuery Modal to allow the user to add a new node. Hope you like it. 1) OrganizationOrderControl.cs using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Web; using System.Web.UI; using System.Runtime.Serialization.Json; using System.Runtime.Serialization; using System.Web.UI.WebControls; using System.IO; using System.Text; /// <summary> /// Summary description for OrganizationOrderControl /// </summary> public class OrganizationOrderControl<T> : Control {     private List<TreeNode> Nodes { get; set; }     public OrganizationOrderControl()     { }     public List<T> Items     {         get         {             if (...