How do I select only a single resource in an appointment scheduler? I'm using an unbound scheduler and need it to only allow a single resource to be selected (not multiple).
I'm busy converting an application which exported data to an Excel spreadsheet to one which uses only the Telerik Worksheet/Workbook control.
So far, the compatibility is excellent, but the one call which seems to exist in Excel which I can't find for the Telerik controls is one which exports a complete 2d array to the worksheet. This was needed in Excel because calls to the external programme were slow, so exporting all the data in one call call made a big difference to performance
For the Telerik controls, it looks like exporting data is more efficient (no surprise - all in the same app) , so maybe I don't need to do things this way any more, but I just want to check that this capability really doesn't exist for a Worksheet. It would mean fewer code changes.
Is this right ?
Hello,
I followed this thread to add a button on every node of my treeview (https://www.telerik.com/forums/how-to-add-button-in-every-node)
Now, I would like to know if it's possible to stick those buttons on the right side of the tree view.
I tried to use the alignment property of the button but no luck... Any solutions?
Thank you in advance for your help.
I'd like to automatically update the description box content based on the resource the user has selected. I haven't had any luck finding an event to detect when the resource is updated in an appointment. Any suggestions?
Thanks!
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;