Tried following article for radgrid localization, it's fine but some parts couldn't change. Screenshots are attached. Fields marked with are not replaced.
Code-behind localization using extension methods (via ResourceManager)
I have a problem without localization. Using page codes
ASPX Code:
ASPX.CS Code
Thanks
Code-behind localization using extension methods (via ResourceManager)
I have a problem without localization. Using page codes
ASPX Code:
| <%@ Control Language="C#" AutoEventWireup="true" CodeFile="Liste.ascx.cs" Inherits="Kp_Kontrol_Eklenti_Liste" |
| Debug="true" %> |
| <%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> |
| <asp:ObjectDataSource ID="ObjectDataSource1" runat="server" OldValuesParameterFormatString="original_{0}" |
| SelectMethod="GetDS" TypeName="W5PCore.Modul.EklentiBLL"> |
| <SelectParameters> |
| <asp:Parameter Name="EklentiID" Type="Int16" /> |
| </SelectParameters> |
| </asp:ObjectDataSource> |
| <telerik:RadGrid ID="RadGrid1" runat="server" AllowPaging="True" |
| DataSourceID="ObjectDataSource1" GridLines="None" PageSize="2" Skin="Hay"> |
| <PagerStyle Mode="NextPrevNumericAndAdvanced" |
| PageSizeLabelText="Sayfa Boyutu:" /> |
| <MasterTableView DataSourceID="ObjectDataSource1"> |
| <RowIndicatorColumn> |
| <HeaderStyle Width="20px"></HeaderStyle> |
| </RowIndicatorColumn> |
| <ExpandCollapseColumn> |
| <HeaderStyle Width="20px"></HeaderStyle> |
| </ExpandCollapseColumn> |
| </MasterTableView> |
| <ClientSettings AllowColumnsReorder="True" ReorderColumnsOnClient="True"> |
| </ClientSettings> |
| </telerik:RadGrid> |
ASPX.CS Code
| using System; |
| public partial class Kp_Kontrol_Eklenti_Liste : System.Web.UI.UserControl |
| { |
| protected void Page_Load(object sender, EventArgs e) |
| { |
| } |
| } |
Thanks