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