When I select timeslots, using the left mouse button and dragging, those timeslots will be incorrectly choosen on a scrolled down webpage.
The screenshot is attached.
This picture shows the end of a mouse drag operation, starting with the timeslot above the current one, so 2 timeslots should have been choosen (instead of 6).
Why? What can I do about it?
This question is also asked on
https://stackoverflow.com/questions/53871128/selecting-timeslots-in-radscheduler-on-webpage-initially-scrolled-down-results-i
Hello,
I have a RadDock in a RadZoneDock and when I put a RadAjaxPanel that encompasses the entire page, one of my docks goes blank (see attachment). When remove Ajax, it works. What should I look at please?
<telerik:RadAjaxPanel ID="RadAjaxPanel" runat="server" LoadingPanelID="RadAjaxLoadingPanel" Width="100%">
Page content.
</telerik:RadAjaxPanel>
Thank you,
Josh

I have an array of items of possible CSV fields that when the page load i need it to auto populate with the correct field name of the CSV,
<div id="divRadGridCsvImport_Wrapper" class="RadGridWrapper">
<telerik:RadGrid EnableLinqExpressions="False" ID="radgridCsvMapping" runat="server" AutoGenerateColumns="false" AllowPaging="False" AllowSorting="False" GridLines="None" Width="500">
<ClientSettings EnableRowHoverStyle="true"></ClientSettings>
<MasterTableView>
<Columns>
<telerik:GridTemplateColumn HeaderText="CSV Field">
<ItemTemplate>
<asp:Label ID="CSVfield" runat="server" Text='<%#DataBinder.Eval(Container, "DataItem.CSVfield")%>'></asp:Label>
</ItemTemplate>
</telerik:GridTemplateColumn>
<telerik:GridTemplateColumn HeaderText="Sample Data">
<ItemTemplate>
<asp:Label ID="SampleData" runat="server" Text='<%#DataBinder.Eval(Container, "DataItem.CSVfield")%>'></asp:Label>
</ItemTemplate>
</telerik:GridTemplateColumn>
<telerik:GridTemplateColumn HeaderText="System Field">
<ItemTemplate>
<asp:DropDownList CssClass="inputfields" ID="dropDownColumnName" onchange="FieldMappingsOnChange(this)" runat="server" />
</ItemTemplate>
</telerik:GridTemplateColumn>
</Columns>
<NoRecordsTemplate>
<div>
<asp:Literal ID="litNoRecords" runat="server" Text="No Records" />
</div>
</NoRecordsTemplate>
</MasterTableView>
</telerik:RadGrid>
</div>
See in the image loaded, i'm trying to make it easier for users so if a match to the field with our field names is closer i.e. same names or close to as possible, it will load these when the page loads. then the user can change and fill in the ones that couldn't be automatically populated. I think Load On Demand may work, but before i try this, i'd like to know if it can be done or what others are doing.
Thanks

Hi,
Since sort time we've moved to XLSX export format of all of our grids but found some strange behavior when exporting data with centriage return (and some of this kind of data). Please see the attachment.
I've debugged the data while exporting, and it seems it is still correct without strange html entities.
Known issue?
Kind regards,
Jelle

Hi all,
How can the footer sum of each group can be displayed in the header of each group .
Thanks,
Sanjay

Hi,
we're trying to build an org chart, but we're getting the "Unable to activate this constraint. Not all values have corresponding parent values." error.
This is the code:
<%@ Page Title="" Language="C#" AutoEventWireup="true" CodeBehind="Prova.aspx.cs" Inherits="TelerikOrgChart.Prova" %><%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %><html> <head> <meta name="viewport" content="width=device-width" /> <title>Prova</title> </head> <body> <form id="form1" runat="server"> <telerik:RadScriptManager runat="server" ID="RadScriptManager1"></telerik:RadScriptManager> <telerik:RadOrgChart ID="RadOrgChart1" runat="server" Skin="Windows7" GroupColumnCount="1"></telerik:RadOrgChart> </form> </body></html>using System;using System.Collections.Generic;using System.Data;using System.Data.Entity;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using OrgChartSice.Data;namespace TelerikOrgChart{ public partial class Prova : System.Web.UI.Page { private DataTable teams; private DataTable employees; protected void Page_Load(object sender, EventArgs e) { OrgChartSiceDbContext orgChartSiceDbContext = new OrgChartSiceDbContext(); var data = orgChartSiceDbContext.dbvw_HRZU_Organigramma_Azienda_Teste.ToList(); var teamList = data .Select(c => new { c.IDBOX, c.IDBOXFATHER, c.DSBOX }) .Distinct().ToList(); var employeeList = data .Select(c => new { c.IDSUBJECT, c.IDBOX, c.NOMINATIVO }) .Distinct().ToList(); CreateTeams(teamList); CreateEmployees(employeeList); RadOrgChart1.GroupEnabledBinding.NodeBindingSettings.DataFieldID = "TeamID"; RadOrgChart1.GroupEnabledBinding.NodeBindingSettings.DataFieldParentID = "ReportsTo"; RadOrgChart1.RenderedFields.NodeFields.Add(new Telerik.Web.UI.OrgChartRenderedField() { DataField = "Team" }); RadOrgChart1.GroupEnabledBinding.NodeBindingSettings.DataSource = teams; RadOrgChart1.GroupEnabledBinding.GroupItemBindingSettings.DataFieldID = "EmployeeID"; RadOrgChart1.GroupEnabledBinding.GroupItemBindingSettings.DataFieldNodeID = "TeamID"; RadOrgChart1.GroupEnabledBinding.GroupItemBindingSettings.DataTextField = "Name"; RadOrgChart1.GroupEnabledBinding.GroupItemBindingSettings.DataSource = employees; RadOrgChart1.DataBind(); } private void CreateEmployees(IEnumerable<dynamic> data) { employees = new DataTable(); employees.Columns.Add("EmployeeID"); employees.Columns.Add("TeamID"); employees.Columns.Add("Name"); //employees.Columns.Add("ImageUrl"); foreach (var item in data) employees.Rows.Add(new string[] { item.IDSUBJECT, item.IDBOX, item.NOMINATIVO }); } private void CreateTeams(IEnumerable<dynamic> data) { teams = new DataTable(); teams.Columns.Add("TeamID"); teams.Columns.Add("ReportsTo"); teams.Columns["ReportsTo"].AllowDBNull = true; teams.Columns.Add("Team"); foreach (var item in data) teams.Rows.Add(new string[] { item.IDBOX, item.IDBOXFATHER == item.IDBOX ? null : item.IDBOXFATHER, item.DSBOX }); } }}This is the stack error:
System.Data.ConstraintCollection.AddForeignKeyConstraint(ForeignKeyConstraint constraint) +2097678 System.Data.ConstraintCollection.Add(Constraint constraint, Boolean addUniqueWhenAddingForeign) +371 System.Data.DataSetRelationCollection.AddCore(DataRelation relation) +929 System.Data.DataRelationCollection.Add(DataRelation relation) +159 System.Data.DataRelationCollection.Add(DataColumn parentColumn, DataColumn childColumn) +45 Telerik.Web.UI.ControlDataBinder.BindToDataTable(DataTable table, String dataFieldID, String dataFieldParentID) +104 Telerik.Web.UI.OrgChartNodeBinder.PerformDataBinding(IEnumerable data) +242 System.Web.UI.WebControls.DataBoundControl.OnDataSourceViewSelectCallback(IEnumerable data) +128 System.Web.UI.DataSourceView.Select(DataSourceSelectArguments arguments, DataSourceViewSelectCallback callback) +34 System.Web.UI.WebControls.DataBoundControl.PerformSelect() +143 System.Web.UI.WebControls.BaseDataBoundControl.DataBind() +74 Telerik.Web.UI.OrgChartNodeBinder.SimpleBindingProcedure() +13 Telerik.Web.UI.OrgChartNodeBinder.GroupEnabledBindingProcedure() +168 Telerik.Web.UI.OrgChartNodeBinder.DataBind() +64 Telerik.Web.UI.RadOrgChart.DataBind() +95 TelerikOrgChart.Prova.Page_Load(Object sender, EventArgs e) in C:\MEGA\Projects\OrgChartSice\TelerikOrgChart\Prova.aspx.cs:55 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) +51 System.Web.UI.Control.OnLoad(EventArgs e) +95 System.Web.UI.Control.LoadRecursive() +59 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +678
Hi,
We are using Telerik UI for ASP.NET AJAX in one of our Asp.net Application, we have a requirement to have a Tree View control with filter option.
Could you please help us if we have TreeView / Filter TreeView in dialog similar to https://demos.telerik.com/kendo-ui/treeview/filter-treeview-in-dialog in Telerik UI for ASP.NET AJAX.
