Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic Item Vertical Move (Read 53 times)
Raeees
YaBB Newbies
*
Offline


I Love MindFusion!

Posts: 22
Joined: Dec 11th, 2024
Item Vertical Move
Apr 2nd, 2025 at 6:20pm
Print Post  
Hi,
In ResourceView, we are able to lock or disable moving items within the resources. However is there a way to only allow moving items accros resources, so basically only vertical dragging of items. The idea behind this is to keep same start and end date of the Item but change its Resource.

Cordially.
  
Back to top
 
IP Logged
 
Slavcho
God Member
*****
Offline


tech.support

Posts: 3364
Joined: Oct 19th, 2005
Re: Item Vertical Move
Reply #1 - Apr 3rd, 2025 at 11:02am
Print Post  
Hi,

You could handle itemModifying event to keep original times:

Code
Select All
calendar.addCalendarListener(
    new CalendarAdapter()
    {
        @Override
        public void itemModifying(ItemModifyConfirmEvent e)
        {
            e.setNewStartTime(e.getItem().getStartTime());
            e.setNewEndTime(e.getItem().getEndTime());
        }
    }); 



Regards,
Slavcho
Mindfusion
  
Back to top
 
IP Logged
 
Raeees
YaBB Newbies
*
Offline


I Love MindFusion!

Posts: 22
Joined: Dec 11th, 2024
Re: Item Vertical Move
Reply #2 - Apr 3rd, 2025 at 12:43pm
Print Post  
That did work, thank you
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint