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