I'm looking at potentially using Telerik UI for a calendar project but I'm running into a potential issue and I'm wondering if there is a workaround.
Currently if events overlap they are displayed as such
9am |Event1| Event 2| Event3|
10am
11am
Is there a way to display them horizontally?
9am |Event1|
|Event2|
|Event 3|
10am
11am
Hi all,
it is possible to rebind only the current page ?
My scenario is I open a detail using a hyperlink column in a RadWindow .
when the user closes the RadWindow I would only have to rebind only the current page .
thank you

Good morning,
I'm trying to print all the selected rows in a RadGrid together with every nested row. My table contains master table rows and each row, when expanded, contains 4 extra rows. I'm using the code example below for printing but it only prints the selected rows (if the master table row is not expanded and every nested row not selected, it will just print the master table row).
function PrintGrid() { var sh = '<%= ClientScript.GetWebResourceUrl(RadGrid1.GetType(),String.Format("Telerik.Web.UI.Skins.{0}.Grid.{0}.css",RadGrid1.Skin)) %>'; var styleStr = "<html><head><link href = '" + sh + "' rel='stylesheet' type='text/css'></link></head>"; var MasterTable = $find('<%= RadGrid1.ClientID %>').get_masterTableView(); var selectedRows = MasterTable.get_selectedItems(); var htmlcontent = "<table>"; for (var i = 0; i < selectedRows.length; i++) { var row = selectedRows[i]; htmlcontent = htmlcontent + "<tr>" + row.get_element().innerHTML + "</tr>"; if (row.get_nestedViews().length > 0) { var nestedSelectedRows = row.get_nestedViews()[0].get_selectedItems(); for (var j = 0; j < nestedSelectedRows.length; j++) { var nestedRow = nestedSelectedRows[j]; htmlcontent = htmlcontent + "<tr>" + nestedRow.get_element().innerHTML + "</tr>"; } } } htmlcontent = styleStr + "<body><div class='RadGrid RadGrid_Metro'>" + htmlcontent + "</table></div></body></html>"; var previewWnd = window.open('about:blank', '', '', false); previewWnd.document.open(); previewWnd.document.write(htmlcontent); previewWnd.document.close(); previewWnd.print(); }
I'm currently lost and don't know how to take this further. Should I expand all the nested rows and select them on print button click, print the document, and then collapse them again or is there a better/faster way to do this?

Hello,
is there any way how to get rid of all ScriptResource and WebResource requests of Telerik controls? I want to use standard script and style bundling. On every page there is always more then 15 requests only for embedded resources. I think it is better to have 1 request for styles and one for scripts. Well, sometimes more, but I want definitely remove all these requests. So any chance to get source scripts, create my own bundles and disable resource requests?
Thanks
Hi Everyone,
My company has a license for Telerik UI for asp.net. My currently installed version us 2014.2.724.40.
My browser is Chrome Version 51, OS is Windows 10 and I am using Telerik through Visual Studio 2010.
I am experiencing a problem where adding a RadDateTimePicker to an existing page is preventing post back from occurring. It submits but does not actually fire any back end code. If I take the date picker away it then allows postback, I tried to see if it was validation but adding the ignore attributes does not appear to have any affect.
Thanks
Hi together,
i`m trying to use a RadContextMenu on a side with 14 RadGrids. Eight of this Grids will use the contextmenu. With the Contextmenu i will Redirect to another aspx page if the cell value of the clicked row is <= something like that.
I currently stuck, by accessing the right radgrid and the cell of the klicked row. How do i get the "clicked" radgrid, or maybe the clicked cell with the values?
Greets
Aero
Hi.
when i click on the link button on RadEditor, by default, user have to click on all properties for the document manager to be shown. and it he forget to fill in the link text before clicking on all properties, it will be hidden.
How can i set the link manager to always show the all properties state with the link text also being shown
Good Morning
I have a RadGrid inside a NestedViewTemplate. I want it to auto-size its height to match number of rows in the Grid. So if the grid is empty, it should show one row with 'No Records Found'. If there are more rows, it should resize the height to contain those. This is to avoid having a fixed size space with lots of blanks.
How can I do this?
Thank you
Raka
i am following this guide
i need the document manager to reference to a physical path instead of virtual path
upon trying to integrate the example to my project, i receive the following error in CustomFileSystemProvider.cs.
stating that 'System.IO.PathHelper' is inaccessible due to its protection level
or is there another example for using physical path on DocumentManager?