or
<telerik:RadScriptBlock ID="radScriptBlock" runat="server"> <script type="text/javascript"> $(function () { var offset = $("#<%= pnlMessageForm.ClientID %>").offset(); var topPadding = 15; $(window).scroll(function () { if ($(window).scrollTop() > offset.top) { $("#<%= pnlMessageForm.ClientID %>").stop().animate({ marginTop: $(window).scrollTop() - offset.top + topPadding }); } else { $("#<%= pnlMessageForm.ClientID %>").stop().animate({ marginTop: 0 }); }; }); }); </script> </telerik:RadScriptBlock><telerik:RadAjaxManager ID="radAjaxManager" runat="server" DefaultLoadingPanelID="radAjaxLoadingPanel"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="btnSend"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="radScriptBlock" /> <telerik:AjaxUpdatedControl ControlID="pnlMessageOverlay" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings></telerik:RadAjaxManager>var apts = scheduler.get_appointments();
var recs = scheduler.get_resources();
var aptsByRec = apts.findByResource(recs.getResourceByTypeAndKey("User", "Michael"));Thanks & forgive my poor English
scheduler.set_appointments(aptsByRec); //Error Here;
Team,
I've 3 RadComboBox inside RadListview. I just want to get the selectedIndex of the each Radcombobox items lying inside the RadListView.
Aready am using RadListView_ItemDataBound event for databing.
What way I can retrieve the SelectedIndex?
//Thanks....