
How can I calculate the last date on a Recurring Appointment in code without using selecting the last Occurrence from the RecurrenceRule.Occurrences collection?
Is there some static method that will allow me to return the date of the last Occurrence of a recurring Appointment?
Hi,
I have a webservice bound scheduler and I would like to show/hide Schedulers' Calender programmatically using javascript.
I used following code but it hides the calendar and I have to click on calendar control multiple times for the pop up calendar to open. The reason I have to do this is. I need to change scheduler timerange and also update pop up calendar to match this date. I got code to match scheduler and pop up calendar to user selected date and time but everytime date is selected, it pops up a calendar and my client does not like that. Calendar should be updated behind the scene silently.
var calendarID = $telerik.$("[id$='rsTicketsSchedule_SelectedDateCalendar']").attr("id");
var calendar = $find( calendarID );
calendar.set_visible( false);
Thanks,
Prava
Hi, Telerik:
The scenario:
1. goto http://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx
2. Clear editor's content.
3. Press <Enter> key. Cursor jump to second line. (expected)
4. Press <Space> key. Cursor jump to first column of second line (P, Div mode) or first line. (Br mode)
But if I Press <Shift+Enter> then <Space>, it worked as expected.
I tried two methods to make <Enter> as <Shift+Enter>, but it worked not fine.
1. RadEditor "OnClientCommandExecuting"
function _Editor_onCmdExecuting(oSender, oArgs) { if ($telerik.isIE && oArgs.get_commandName() === "EnterNewLine") { oArgs.set_cancel(true); oSender.fire("ShiftEnter", null); }}or
2. RadEditor "OnClientLoad" attacted onkeydown event
function _Editor_onLoad(oSender, oArgs) { oSender.attachEventHandler("onkeydown", function (e) { if (e.keyCode === 9) { oSender.pasteHtml(" "); $telerik.cancelRawEvent(e); } else if (e.keyCode === 13) { oSender.pasteHtml("<br>"); $telerik.cancelRawEvent(e); } });}
Any idea make <Enter> as <Shift+Enter>?
Telerik version: 2015.3.1111.40


Hi:
Is there a way retrieve say 25 rows in a list-box a click on some sort of navigation to get more data. Trying to limit the amount of data to retrieve.
Phil
Hi there,
i'm using RadMenu as sample on http://demos.telerik.com/aspnet-ajax/menu/examples/functionality/propertyexplorer/defaultcs.aspx,
i'v added onClientItemClicked function to close menu after item clicked like this
[code]
function onClientItemClicked(sender, eventArgs) {
sender.close(true);
}
[/code]
after it closed, i switch out to other window and switch back,
[b]THE MENU EXPEND ITSELF without clicking/mouseover[/b]
can anyone help me ?
Thanks,

Hi, I am using a Radgrid with AutoGenerateColumns="true" and
set the following parameters:
BatchEditingSettings-EditType="Cell"
EditMode="Batch"
In runtime the
values in grid are in 10 decimal digit, but when I go in edit mode in the
single cell, the value is shown with 2 decimal digit.
Please, can you
help me to find the way to get 10 decimal digit in edit mode?
Thanks
Fulvio
