Unplanned
Last Updated: 07 Jun 2024 12:53 by ADMIN
Martin
Created on: 07 Jun 2024 12:50
Category: PageView
Type: Bug Report
0
RadPageView: Edit operation is triggered when dragging a page item
In this case, the editing functionality of the control is allowed. When we try to reorder the pages tabs runtime, the editing operation is triggered on the drag page item. 
1 comment
ADMIN
Dinko | Tech Support Engineer
Posted on: 07 Jun 2024 12:53

Hi Martin,

Thank you for reporting this. As a workaround, we could cancel the editing when the drag operation is starting:

(this.radPageView1.ViewElement.ItemDragService as RadPageViewDragDropService).PreviewDragStart += RadForm1_PreviewDragStart;

private void RadForm1_PreviewDragStart(object sender, PreviewDragStartEventArgs e)
{
    this.radPageView1.ViewElement.CancelEdit();
}

Regards,
Dinko | Tech Support Engineer
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.