Hi,
How can I used localisation for a fieldEditors like radfilterTextFieldEditor.
Asp :
This VB code does'nt work :
Have you got an idea to change the DisplayName in this case ?
Anne
How can I used localisation for a fieldEditors like radfilterTextFieldEditor.
Asp :
<telerik:RadFilter ID="RadFilter1" runat="server" Skin="WebBlue"> <FieldEditors> <telerik:RadFilterTextFieldEditor DataType="System.String" DisplayName="Customer account" FieldName="CodeClient" /> </FieldEditors> </telerik:RadFilter>This VB code does'nt work :
Private Sub RadFilter1_FieldEditorCreated(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadFilterFieldEditorCreatedEventArgs) Handles RadFilter1.FieldEditorCreated If sculture = "fr-FR" Then If e.Editor.FieldName = "CodeClient" Then e.Editor.DisplayName = "Code Client" End If End IfEnd SubHave you got an idea to change the DisplayName in this case ?
Anne