1234567891011121314151617181920 |
- 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<JobDocumentSet, JobDocumentSetMileStone>
- {
- protected override void DoReconfigure(DynamicGridOptions options)
- {
- base.DoReconfigure(options);
- options.Clear();
- options.EditRows = true;
- }
- }
- }
|