JobDocumentSetMilestoneGrid.cs 519 B

1234567891011121314151617181920
  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(DynamicGridOptions options)
  13. {
  14. base.DoReconfigure(options);
  15. options.Clear();
  16. options.EditRows = true;
  17. }
  18. }
  19. }