

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);
Greetings,
I was trying to use the Contains filter with a value containing a '%' char in hte middle of value but no success. The settings are:
What I'm trying to filter is something like:
([description] like '%apple%juice%') to bring values like "green apple juice" or "apple juice box" or even "yadda apple whatever juice" (sorry for the bad example)
The filter expression when I enter "apple%juice" in the filter item is generated like that example but the filter doesn't work. Is this approach possible or simply can't be done?
<script type="text/javascript"> function requestStart(sender, args) { if (args.get_eventTarget().indexOf("btnDownloadPDF") > 0) args.set_enableAjax(false); }</script>
<ExportSettings ExportOnlyData="true" OpenInNewWindow="true" HideStructureColumns="true">
<Excel Format="Biff" />
</ExportSettings>
GridItem
Item = (GridItem)radDASignature.MasterTableView.GetItems(GridItemType.Item)[0];
foreach (TableCell tcell in Item.Cells)
{
tcell.Text = tcell.Text.Replace(
"<nobr>", "");
tcell.Style[
"text-align"] = "left";
tcell.HorizontalAlign =
HorizontalAlign.Left;
}
This above doesn't work. Please help with code.
2) When exporting the cell content in excel,I have <nobr> and </nobr> tags to the data. How do I get rid of them while exporting.
I set them in column created event to avoid wrapping of cell contents. However, I do not want the <nobr> added to the excel data while exporting.