<script type="text/javascript" id="telerikClientEvents1">//<![CDATA[ function HydroTestRadPanelBar_ItemExpand(sender,args) { var panelbar = $find(weld1UserControlWeldRadPanelBarClientID); for (var i = 0; i < panelbar.get_allItems().length; i++) { panelbar.get_allItems()[i].set_expanded(false); } var panelbar2 = $find(weld2UserControlWeldRadPanelBarClientID); for (var i = 0; i < panelbar2.get_allItems().length; i++) { panelbar2.get_allItems()[i].set_expanded(false); } var panelbar3 = $find(jointUserControlJointRadPanelBarClientID); for (var i = 0; i < panelbar3.get_allItems().length; i++) { panelbar3.get_allItems()[i].set_expanded(false); } }//]]></script>



I have apply grouping in main radgrid that also contained nested grid .when i drag a column its successfully group and sort but i drag another column its getting error.
i am working in DNN.
A critical error has occurred.
Specified argument was out of the range of valid values.
Parameter name: index
so please help me.
thanks
Mukul
Hello,
I'm using scheduler timeline (http://demos.telerik.com/kendo-ui/scheduler/timeline).
When i try to add some dynamic data to scheduler datasource and resources, chrome console returns me error "Uncaught TypeError: Cannot read property '_continuousEvents' of undefined"
var s = $("#appointmentScheduler").data('kendoScheduler');var d = { AppointmentId: data.GetAppointmentsForContactsResult.AppointmentData[i].AppointmentId, title: data.GetAppointmentsForContactsResult.AppointmentData[i].Title, datas: data.GetAppointmentsForContactsResult.AppointmentData[i].Data, start: parseDateFromWCF(data.GetAppointmentsForContactsResult.AppointmentData[i].StartDate), end: parseDateFromWCF(data.GetAppointmentsForContactsResult.AppointmentData[i].EndDate), endTimezone: undefined, startTimezone: undefined, recurrenceException: undefined, recurrenceRule: undefined, description: undefined};s.dataSource.add(d);var tmp = [];tmp.push(self.contacts());tmp.push(selected);self.contacts(tmp);self.groupDataSourceUpdate();s.resources[0].dataSource.data(self.groupingDataSource());s.refresh();
Filled data looks like:
var d = { AppointmentId:10, title: "test", datas: [3], start: Tue Dec 22 2015 13:00:00 GMT+0100 (Central European Standard Time), end: Tue Dec 22 2015 14:00:00 GMT+0100 (Central European Standard Time), endTimezone: undefined, startTimezone: undefined, recurrenceException: undefined, recurrenceRule: undefined, description: undefined};s.dataSource.add(d);var tmp = [];tmp.push(self.contacts());tmp.push([{text: "test", value: 3}]);self.contacts(tmp);self.groupDataSourceUpdate();s.resources[0].dataSource.data(self.groupingDataSource());s.refresh();
<telerik:RadHtmlChart runat="server" ID="DonutChart1" Height="600px" Width="600px" OnClientSeriesClicked="OnClientSeriesClicked"> <ChartTitle Text="Deficiencies by Risk Rating" /> <PlotArea> <Series> <telerik:DonutSeries DataFieldY="Size" NameField="State" ExplodeField="IsExploded"> <TooltipsAppearance DataFormatString="{0}%"></TooltipsAppearance> </telerik:DonutSeries> </Series> </PlotArea> </telerik:RadHtmlChart>protected void Page_Load(object sender, EventArgs e) { DonutChart1.DataSource = ReportingBLL.GetDepartmentPieChartDataByPriority(); DonutChart1.DataBind(); }
I have a lineseries chart which displays a number for each day of a specific month. I want to be able to see which dates are in a weekend by setting the background color for these dates.
Can I change the background of a lineseries chart between two major gridlines?
// attempt1: does not resolve at compile time var tree = $find("<%= RadTreeViewCommands.ClientID %>"); // attempt2: radTreeViewCommandsClientID is a global variable we set on the server var tree = $find(radTreeViewCommandsClientID);