Completed
Last Updated: 25 Sep 2024 10:53 by ADMIN
Release 2024.3.924
Sandor
Created on: 11 Sep 2024 08:02
Category: GridView
Type: Bug Report
1
RadGridView: Copying special symbols from cell are not pasted correctly
In this case, the cell contains the following string: körte. When copying the cell while it is in non-edit mode, and pasting the value in another cell, the pasted string is the following one: körte
1 comment
ADMIN
Dinko | Tech Support Engineer
Posted on: 11 Sep 2024 08:12

Hello Sandor,

Thank you for reporting this. As a workaround, we can cancel the copying of the cell content into HTML data format. To do that we can cancel the Coying event like so:

private void RadGridView1_Copying(object sender, GridViewClipboardEventArgs e)
{
    if (e.Format == DataFormats.Html)
    {
        e.Cancel = true;
    }
}

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.