This question is locked. New answers and comments are not allowed.
RadGridview For Silverlight RowEditEnded Method
When I am inputting new entry and proceed to move to the next column by using the right arrow -> or clicking the next column (not clicking the next row yet), the RowEditEnded method sometimes fires unexpectedly. Is there a way for me to prevent that? Below is my block of code on this method.
if (e.EditAction == GridViewEditAction.Cancel)
{
return;
}
if (e.EditOperationType == GridViewEditOperationType.Insert)
{
//do something;
}
else if (e.EditOperationType == GridViewEditOperationType.Edit)
{
//do something
}
When I am inputting new entry and proceed to move to the next column by using the right arrow -> or clicking the next column (not clicking the next row yet), the RowEditEnded method sometimes fires unexpectedly. Is there a way for me to prevent that? Below is my block of code on this method.
if (e.EditAction == GridViewEditAction.Cancel)
{
return;
}
if (e.EditOperationType == GridViewEditOperationType.Insert)
{
//do something;
}
else if (e.EditOperationType == GridViewEditOperationType.Edit)
{
//do something
}