void radGV_FilterChanging(object sender, Telerik.WinControls.UI.GridViewCollectionChangingEventArgs e)
{
e.Cancel =
true;
}
Thanks 
anu
Thoughts?
private void radGridView1_GroupSummaryEvaluate(object sender, GroupSummaryEvaluationEventArgs e) {     int contactsCount = e.Group.ItemCount;     e.SummaryItem.Name = contactsCount.ToString(); }Hi
I have a decimal Column in RadGridView with BeginEditMode = BeginEditOnKeystrokeOrF2 and using Danish culture.
When user presses ',' on the selected cell, cell goes to edit mode but ',' is not inserted in the cell. But if user now again presses comma, then it is inserted into the cell.
So if user wants to enter the value ,5 he has to press comma twice. Ofcourse he has no problom in entering 0,5
Note, this is when user enters to edit mode by pressing , not by pressing F2.
What should I do? Any help would be appreciated.
Thanks
Regards
Private Sub gridClients_CellValueChanged(ByVal sender As Object, ByVal e As Telerik.WinControls.UI.GridViewCellEventArgs)
Dim column As GridViewDataColumn = TryCast(e.Column, GridViewDataColumn)
        If column IsNot Nothing AndAlso column.FieldName = "ClientId" Then
e.Row.Cells(
"vcFirstName").Value = GetClientFirstName(e.Value)
e.Row.Cells(
"vcLastName").Value = GetClientLastName(e.Value)
End If
End Sub