You could see in demo page:
http://demos.telerik.com/aspnet-ajax/editor/examples/toolprovider/defaultcs.aspx?skin=Silk
while checking Use Tool Provider. all editors except the first one are broken

I did a tabstrip that has a second level for each tab in first level. When I clicked on one of these tabs in 2nd level, the tabstrip resets back to first level "Home" tab (that has "selected" by default) and second level of tabstrip disappears.
I want to click on one of these tabs in second level, and shows its corresponding tab parent (in 1st level) being selected as well as itself. How can I achieve this behavior?
Thanks

Hi,
is it possible to merge multiple columns in one (because of lack of space) but being able to sort by each of the columns?
See Screenshot attached for example.
Thanks in advance,
Martin
Am am using this example for my learning tool. The example is using a SQL connection string for data access but I am using Data Entity so I am having to do some code translation. So far I have been able to get the Parent RadGrid configured and can access the USerControl to display the record data when I click the edit link. However Since I am very new to the RadGrid world and am still working on my C# skills I am having some difficulty with the code translation to perform the update.
In the Telerik example this code is used to start to process:
//Prepare new row to add it in the DataSource DataRow[] changedRows = this.Employees.Select("EmployeeID = " + editedItem.OwnerTableView.DataKeyValues[editedItem.ItemIndex]["EmployeeID"]);This does not work for me and I get this error message:
LinkAnalysis3.Subjects' does not contain a definition for 'Subjects' and no extension method 'Subjects' accepting a first argument of type 'LinkAnalysis3.Subjects' could be found (are you missing a using directive or an assembly reference?)
Okay I understand the error the Subjects table from the database is not identified, so I have no record or row selected. So I tried this C# code:
DataRow[] changedRows = (results.Where(r => r.SubjectId = (editedItem.OwnerTableView.DataKeyValues[editedItem.ItemIndex]["SubjectId"])));But it does not work and I get an error message stating :
"Cannot implicitly convert type 'object' to 'int'. An explicit conversion exists (are you missing a cast?)"
Can someone please explain what I am doing wrong and how I can get this fixed.
Thank You for your assistance.
Perry
We have had no issues printing in any browsers until Microsoft Edge. The contents of the radWindow overlays the underneath layers when printing. How do we globally fix this as we have a TON of places we print the contents of radWindows?
Thanks!
Hi
Can I add additional points to a BoxPlotSeries plot? For example, on http://demos.telerik.com/aspnet-ajax/htmlchart/examples/charttypes/box-plot-chart/defaultcs.aspx, looking at the plot for January, I want to add a point for 69. Can it be done?
Also, what is DataFieldY used for?
Thanks!
The given javascript function returns date in the following format:
Thu Nov 12 2015 00:00:00 GMT-0500 (Eastern Standard Time)
That output fails DateTime.TryParse. Is there any way to get the timeSlot.get_startTime() to return a simpler date format, or a way to parse that output into a Date object?
Thank you