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.