April 22, 2025, 02:23:46 AM

See more Support incidents in our old archived forum.

Author Topic: How to disable 'Task-box' during drag and drop?  (Read 5122 times)

ilkka.paloheimo

  • Customers
  • Newbie
  • *
  • Posts: 22
How to disable 'Task-box' during drag and drop?
« on: February 05, 2018, 01:17:58 PM »
I would like to disable this box. Or if not possible, can I edit the content?

Box content is like this at the moment:

Task
Start: 01/03/2018 0:00:00
Finish: 02/03/2018 0:00:00


Rajagopal

  • RQ Members
  • Full Member
  • *
  • Posts: 182
Re: How to disable 'Task-box' during drag and drop?
« Reply #1 on: February 05, 2018, 03:41:35 PM »
Ilkka,

You can disable/customize the MovingInfoPopup content (information while taskbar drag and drop) like this,

Here is the C# code,
Code: [Select]
void fxgantt_Loaded(object sender, RoutedEventArgs e)
{
....
this.fxgantt.GanttChart.MovingInfoPopup = null;
}

Similarly, you can disable/customize the ResizeInfoPopup.

Thanks,
Raja.

ilkka.paloheimo

  • Customers
  • Newbie
  • *
  • Posts: 22
Re: How to disable 'Task-box' during drag and drop?
« Reply #2 on: February 05, 2018, 04:21:32 PM »
Thank you Raja.