hi
my class localization is
public class CustomSchedulerNavigatorLocalizationProvider : SchedulerNavigatorLocalizationProvider
{
public override string GetLocalizedString(string id)
{
switch (id)
{
case SchedulerNavigatorStringId.AgendaViewButtonCaption:
{
return "دستور کار";
}
case SchedulerNavigatorStringId.DayViewButtonCaption:
{
return "روزانه";
}
case SchedulerNavigatorStringId.WeekViewButtonCaption:
{
return "هفتگی";
}
case SchedulerNavigatorStringId.MonthViewButtonCaption:
{
return "ماهانه";
}
case SchedulerNavigatorStringId.TimelineViewButtonCaption:
{
return "تایم لاین";
}
case SchedulerNavigatorStringId.ShowWeekendCheckboxCaption:
{
return "تعطیلات هفته";
}
case SchedulerNavigatorStringId.TodayButtonCaptionToday:
{
return "امروز";
}
case SchedulerNavigatorStringId.TodayButtonCaptionThisWeek:
{
return "این هفته";
}
case SchedulerNavigatorStringId.TodayButtonCaptionThisMonth:
{
return "این ماه";
}
case SchedulerNavigatorStringId.SearchInAppointments:
{
return "جستجو ";
}
}
return String.Empty;
}
}
but agenda view not translat!!!
2-Can I write code for today's event?
For some reason, it seems to keep saving the original items that were in the background list, such as "BUSY" or "BUSINESS", even though I've cleared the list, and added new backgrounds (with different IDs).
So its not that the iCal export doesn't save backgrounds, it just that it doesn't seem to recognize custom backgrounds and then saves with the wrong background instead.
I'm exporting/importing my appointments using the iCal import/export.
It appears that the resource is not saved as part of that? So basically I lose all resources in all appointments. Any suggestions as a work around, other than saving the resource data elsewhere?
private void frmMapping_Load(object sender, EventArgs e)
{
string cacheFolder = @"..\..\cache";
bingProvider.UseSession = true;
bingProvider.BingKey = "MyKey";
LocalFileCacheProvider cache = new LocalFileCacheProvider(cacheFolder);
bingProvider.CacheProvider = cache;
bingProvider.ImagerySet = Telerik.WinControls.UI.Map.Bing.ImagerySet.Road;
this.radMap1.Providers.Add(bingProvider);
PointG racheer = new PointG(38.595592, -90.429629);
MapPin racheerPin = new MapPin(racheer);
racheerPin.Text = "Right Here Man!!!";
racheerPin.BackColor = Color.AliceBlue;
Hi,
I am using a RadGridView in a window .
I am using RadDropDownListEditor for editing one of the cells in the column that has one element as list.
I want it to be able to set as empty on editingBut the change isn't persisting when I provide empty string.
According to the documentation, the change only persists when we select one of the other items in the list.
Is there any way I can set it as blank on providing empty string.
Hi Telerik team
I just use the radganttview replacing our old GanttOCX. I have a question about links between tasks. We don't want to use links.
Is it possible that links are invisible in the GanttViewGraphicalviewElement ?
Thanks in advance for your answer.
Hi ,
I am using a RadGridView along with a button in a Form window. When button is clicked , it shows some hidden rows in RadGridView.
I want the hidden rows to be showed when the Form window is maximized.
How do I go on about doing this?
This is how I am trying it:
If Me.WindowState =2 Then
'Raise an event here
thanks.