Hi
We are forming a scheduleView and defining all appointments as readonly.
we have written the following code to do so:
this worked great untill we changed the dll`s from version 2011.2.712.40
to version 2011.2.920.40
from some reason the readonly behavior is not affective on the new version
(when we restored the old dll`s, the behavior was back again).
Any ideas how to solve this for we still want to use the latest Telerik version
Thanks
We are forming a scheduleView and defining all appointments as readonly.
we have written the following code to do so:
//setting the scheduleView as readonly
Slot readOnlyslot = new Slot() { IsReadOnly = true };
readOnlyslot.Resources.Add(
new Resource("readOnly"));
ObservableCollection<Slot> _readOnlySlots = new ObservableCollection<Slot>();
_readOnlySlots.Add(readOnlyslot);
RadTimeLineView.SpecialSlotsSource = _readOnlySlots;
this worked great untill we changed the dll`s from version 2011.2.712.40
to version 2011.2.920.40
from some reason the readonly behavior is not affective on the new version
(when we restored the old dll`s, the behavior was back again).
Any ideas how to solve this for we still want to use the latest Telerik version
Thanks