Hi!
I need to allow copy/paste of a row in a wingrid. The problem is that I have 2 cells that are read-only. So when I paste the row, I received an error asking me to continue to copy in the read-only cell or cancel. If I click OK then everything works fine. My question is How can I deactivate this message to always paste (with copy cell content in read-only cells) without warnings and message boxes ?
I looked in the WinGrid Error event and found MultiCellOperationErrorInfo object, but I didn't find the way to correct this behavior.
Best regards,
Benoit
Hi Benoit,
I think you should be able to achieve what you want with something like this:
private void ultraGrid1_Error(object sender, Infragistics.Win.UltraWinGrid.ErrorEventArgs e) { if (e.ErrorType == ErrorType.MultiCellOperation) { if (e.MultiCellOperationErrorInfo.Operation == MultiCellOperation.Paste && e.MultiCellOperationErrorInfo.CanContinueWithRemainingCells) { e.MultiCellOperationErrorInfo.Action = MultiCellOperationErrorInfo.ErrorAction.Continue; e.Cancel = true; } } }
Hi Mike!
It works great. Thanks. But I still have a problem. I have cells that contains decimal numbers with a display format (to see them as money) and a mask input and these cells do not paste correctly. After paste, the cells contains 0,00$ instead of the amount. Can you explain me why I have this problem ?
I have another decimal number that its display format is percent and the paste works.
I'm not sure why that would happen. Can you post a small sample project that demonstrates this issue?
What was the value before you pasted it?
Hi Mike,
sorry for the long delay before I answer you on this problem. I made a little project with only a grid. I have several columns and some columns are decimal values. If I don't use any format string, copy paste works great.
But if I put a Format on a decimal column (col.Format = c) to see money, then I received an error on this column when I copy paste. I can continue and everything is paste successfully except the decimal column with the format string. I thought it was in my code but a very simple project demonstrate the problem. You can try this by yourself very easily. My project is linked to my database so it is hard to give it to you for the moment.
What version of the grid are you using? Do you have the latest service release?
How to get the latest service release - Infragistics Community
Yes, I use the latest service release that I can find in my downloads. The version is 10.3. The complete build number is 10.3.20103.1000 in my reference of my project.
Hello Francis,
This issue has been resolved in the latest Service Release as of the date of this post.
Hello Benoit,
The issue should be resolved in the next Service Release.
Hello Dave,
is this issue has been resolved in the latest service release?
I have logged this as a development issue.
it should be a great idea if the copy/paste works with the value instead of the the display text in this case. It should respond to all my copy/paste problems.