
if (!IsPostBack) {
SchToday.CustomAttributeNames = new string[] { "Added Users", "Type" }; //type is added separately and works fine, the users are added separately as they are only added under certain circumstances. SetUsersResource();} private void SetUsersResource() { UserDetailCollection allUSers = UserManager.GetAllUsers(); ResourceType users = new ResourceType("Added Users"); users.AllowMultipleValues = true; users.ForeignKeyField = "AppointmentId"; SchToday.ResourceTypes.Add(users); foreach (UserDetail user in allUSers) { SchToday.Resources.Add(new Resource("Added Users", user.UserId, user.FullName)); } }SchToday.DataSource = GetSchedule();You can find attached to this sticky note all available localizations of RadEditor for ASP.NET AJAX provided by our customers. If you have any new localizations for RadEditor and would like to share them with our community, you can send them via the support ticketing system under your Client.net account.
You work will be gladly rewarded.
p.s. Please, note that Telerik supports only the provided English (en-US), German (de-DE) and French (fr-FR) localizations in the Telerik.Web.UI installation and that the attached here localizations could be incomplete or could have mistakes.
p.s.2. If you want t to update any language packs, you can use the following useful tool: http://www.screwturn.eu/(X(1)S(grc2ro551rnpa2eeviiyb5fn))/ResxSync.ashx. It can add new keys to the translated files whenever you have updated the original English files.
Another good diff and merge tool is WinMerge.
Best regards,
Rumen
The Telerik team

<script type="text/javascript"> //<![CDATA[ function openRadWin() { radopen("ManageFS.aspx?cycle_date=" + radDateInput1, "RadWindow1"); } //]]> </script><td style="text-align: center;"> New statement cycle date <strong>(mm/dd/yyyy)</strong>: <telerik:RadDateInput ID="_new_period" runat="server" Width="100px" InvalidStyleDuration="100" CssClass="InputText" DateFormat="MM/dd/yyyy" DisplayDateFormat="MM/dd/yyyy"> </telerik:RadDateInput></td><td style="text-align: center;" class="side"> <asp:LinkButton ID="btnAddStmt" runat="server" Visible="false">Add Statement</asp:LinkButton></td>
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If Session("site_member_type") = 1 Then
btnAddStmt.Visible = True
Me.btnAddStmt.Attributes.Add("onclick", "openRadWin(); return false;")
Me.pnlHideViews.Visible = True
End If
end sub