JobDocumentSetMilestoneGrid.cs 556 B

12345678910111213141516171819
  1. using Comal.Classes;
  2. using InABox.Core;
  3. using InABox.DynamicGrid;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace PRSDesktop
  9. {
  10. public class JobDocumentSetMilestoneGrid : DynamicOneToManyGrid<JobDocumentSet, JobDocumentSetMileStone>
  11. {
  12. protected override void DoReconfigure(FluentList<DynamicGridOption> options)
  13. {
  14. base.DoReconfigure(options);
  15. options.BeginUpdate().Clear().AddRange(DynamicGridOption.EditRows).EndUpdate();
  16. }
  17. }
  18. }