RoleGrid.cs 461 B

12345678910111213141516
  1. using Comal.Classes;
  2. using InABox.Core;
  3. using InABox.DynamicGrid;
  4. namespace PRSDesktop
  5. {
  6. public class RoleGrid : DynamicDataGrid<Role>
  7. {
  8. protected override BaseEditor? GetEditor(object item, DynamicGridColumn column)
  9. {
  10. if (column.ColumnName.StartsWith("OrgChart.") && !Security.IsAllowed<CanViewOrgChartByRole>())
  11. return new NullEditor();
  12. return base.GetEditor(item, column);
  13. }
  14. }
  15. }