Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/02/18 15:51:17 (6 years ago)
Author:
jzenisek
Message:

#2839: applied several fixes:

  • show full project-path in project/resource selector
  • handle lost of project-ownership by not withdrawing permissions
  • update automatically after hand-down save
  • lock jobs for which statistics/deletion is pending
  • lock the disabled checkbox in ProjectResourcesView...
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2839_HiveProjectManagement/HeuristicLab.Clients.Hive.Administrator/3.3/Views/ScheduleView.cs

    r15956 r15978  
    234234    }
    235235
    236     public virtual void SetEnabledStateOfSchedule(bool state) {
    237       if (InvokeRequired) {
    238         Invoke(new Action(() => SetEnabledStateOfSchedule(state)));
    239       } else {
    240         if (Content == null || Locked || ReadOnly) state = false;
    241         //groupBox1.Enabled = state;
    242         btnClearCal.Enabled = state;
    243         btnSaveCal.Enabled = state;
    244       }
    245     }
     236    //public virtual void SetEnabledStateOfSchedule(bool state) {
     237    //  if (InvokeRequired) {
     238    //    Invoke(new Action(() => SetEnabledStateOfSchedule(state)));
     239    //  } else {
     240    //    if (Content == null || Locked || ReadOnly) state = false;
     241    //    //groupBox1.Enabled = state;
     242    //    btnClearCal.Enabled = state;
     243    //    btnSaveCal.Enabled = state;
     244    //  }
     245    //}
    246246
    247247    private void btnClearCal_Click(object sender, System.EventArgs e) {
Note: See TracChangeset for help on using the changeset viewer.