DataGridViewTextBoxMultilineEditingControl

0
0

Wisej Application Reload befor DataGridViewTextBoxMultilineEditingControl Copyed multiline text.

Test source code like this:

private void This_Load(object sender, EventArgs e)
{
dataGridView1.DataSource = TestA.GetList();

foreach (DataGridViewColumn col in dataGridView1.Columns)
{
switch (col.DataPropertyName)
{
case "Note":
col.Editor = new DataGridViewTextBoxMultilineEditingControl();
break;
}
}

dataGridView1.AutoSizeRowsMode = DataGridViewAutoSizeRowsMode.AllCells;
dataGridView1.AutoResizeRows();
dataGridView1.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.AllCells;
dataGridView1.AutoResizeColumns();
}

  • You must to post comments
0
0

After I upgraded to version 2.1.85, in the test of win10 edge (version 18), I reappeared the phenomenon in video recording. The source code will be uploaded later

  • Levie (ITG)
    Hi dev, I tried your sample and I’m still not able to replicate it using Edge, Chrome, and FireFox. I would suggest turning on all debug exceptions in VS (Debug > Windows Exception Settings > Common Language Runtime Exceptions). You can also monitor the browser console for any exceptions. Check for any long running tasks on the server and that the network conditions are stable. Are you able to replicate the issue on other browsers too?
  • You must to post comments
0
0

Hi dev,

Could you please wrap up a small sample so we can test it?

Best,

Levie

  • You must to post comments
Showing 2 results
Your Answer

Please first to submit.