using Comal.Classes; using InABox.Core; using InABox.DynamicGrid; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PRSDesktop { public class JobDocumentSetMilestoneGrid : DynamicOneToManyGrid { protected override void DoReconfigure(DynamicGridOptions options) { base.DoReconfigure(options); options.Clear(); options.EditRows = true; } } }