Hi,
The color picker doesn't looks good when zooming in the browser.
Try zooming to 120% and run your demo:
http://demos.telerik.com/aspnet-ajax/colorpicker/examples/overview/defaultcs.aspx
You need to reload the page after zooming!
The Web colors wraps, and the HSB/HSV tabs also wraps a lot!
Regards
Andreas
I am running asp.net framework 4.0; Windows 10; Telerik UI for ASP.NET AJAX v2015.2.729.40
In a webforms asp.net project, I have created multiple RadGauges in my C# codebehind, using data pulled from a SQL Server database. Now I need to do one or more of the following:
-save the RadGauges to PDF or as an image file (that can later be emailed)--preferably mutiple gauges per file;
-OR email the gauges
-OR print the gauges
If I can do the FIRST option, I can, obviously do the other two...
I have searched and searched for several days to attempt to do this on my own before sending in a request...and I simply cannot seem to work this out. Can someone assist me? Thanks in advance for any assistance!
Hi,
I have a radgridview with a ColumnHeader group.
one of the column header group is pinned.
If i drop a column on the pinned column group header, the column is getting removed.I can not even drag it back from the column chooser
Is there a setting to prevent this from happening. it basically hangs with that column label floating around.
01./// <param name="e">The <see cref="TimeSlotCreatedEventArgs"/> instance containing the event data.</param>02. protected void apertureAppointments_TimeSlotCreated(object sender, TimeSlotCreatedEventArgs e)03. {04. foreach (DateTime dt in SpecialDays)05. 06. {07. if (DateTime.Compare(e.TimeSlot.Start.Date, dt) == 0)08. {09. //Set the CssClass property to visually distinguish your special days.10. e.TimeSlot.CssClass = "Disabled";11. }12. 13. 14. 15. 16. }17. 18. 19. List<Resource> resources = new List<Resource>(apertureAppointments.Resources.GetResourcesByType("Managers"));20. Resource res = resources[5];21. 22. DateTime dt1 = DateTime.Parse("2016/03/25 10:00");23. DateTime dt2 = DateTime.Parse("2016/03/25 16:00");24. if (res.Text == "Adam Adair")25. {26. if (DoDateRangesOverlap(e.TimeSlot.Start, e.TimeSlot.End, dt1, dt2))27. {28. e.TimeSlot.CssClass = "UnavailableCssStyle";29. }30. }31. }
This is the last element of a long running project and if can get this working they will be very please is their anyway to add a icon to represent a holiday?.
Hi,
I want to show media list in Repeater, but it's not working.
I have tried to set file name static,t works out of the Repeater.
This is code is not working;
<form id="form1" runat="server">
<telerik:RadScriptManager ID="RadScriptManager4" runat="server" EnablePageMethods="true" >
</telerik:RadScriptManager>
<telerik:RadStyleSheetManager ID="RadStyleSheetManager1" runat="server">
</telerik:RadStyleSheetManager>
<telerik:RadSkinManager ID="RadSkinManager1" runat="server" Skin="Windows7" >
</telerik:RadSkinManager>
<asp:Repeater ID="rpDetay" runat="server" OnItemDataBound="FormatearPublicaciones">
<ItemTemplate>
<div>
<telerik:RadMediaPlayer RenderMode="Lightweight" ID="RadMediaPlayer1" runat="server" Width="700px" BackColor="Black"
AutoPlay="false" HDActive="false" Height="394px" HDSource="files/xxx.mp4" Source="files/xxx.mp4">
</telerik:RadMediaPlayer>
</div>
</ItemTemplate>
<SeparatorTemplate>
<br />
</SeparatorTemplate>
</asp:Repeater>
</form>
Also I see that errors on Chrome Developer Tools;
RadMediaPlayerScripts.js:1031 Uncaught TypeError: Cannot read property 'get_element' of null
RadMediaPlayerScripts.js:770 Uncaught TypeError: Cannot read property 'setBytesLoaded' of null
RadMediaPlayerScripts.js:764 Uncaught TypeError: Cannot read property 'setProgressRailMaxValue' of null
This code is working;
<form id="form1" runat="server">
<telerik:RadScriptManager ID="RadScriptManager4" runat="server" EnablePageMethods="true" >
</telerik:RadScriptManager>
<telerik:RadStyleSheetManager ID="RadStyleSheetManager1" runat="server">
</telerik:RadStyleSheetManager>
<telerik:RadSkinManager ID="RadSkinManager1" runat="server" Skin="Windows7" >
</telerik:RadSkinManager>
<telerik:RadMediaPlayer RenderMode="Lightweight" ID="RadMediaPlayer1" runat="server" Width="700px" BackColor="Black"
AutoPlay="false" HDActive="false" Height="394px" HDSource="files/xxx.mp4" Source="files/xxx.mp4">
</telerik:RadMediaPlayer>
</form>


We are using latest version of licensed DLL 2016.1.225.35.
Editor Dialogues(Image uploader, link manager, document manager) does not close in all IE versions onclick of Cancel and insert button. whereas this works fine in other browsers.
We are enforcing to load edge version and there are no script errors on pageload?
Should we include any JS files or did we miss any reference files.
<telerik:RadScriptManager runat="server" ID="RadScriptManager1" />
<telerik:RadSkinManager runat="server" RenderMode="Lightweight" ID="RadSkinManager1" ShowChooser="true" Skin="Outlook" EnableEmbeddedSkins="true" Visible="false"></telerik:RadSkinManager>
<telerik:RadEditor RenderMode="Lightweight" ID="editor1" runat="server" EnableResize="false" EditModes="Design,HTML"
AllowThumbGeneration=true
UseEmbeddedScripts=false
EnableTab="false" width="630px" height="570"
Editable="True"
RadControlsDir="~/login/sites/editor/telerik/RadControls/"
ConfigFile="~/Login/sites/Editor/telerik/RadControls/Editor/ConfigFile.xml"
ToolsFile="~/Login/sites/Editor/telerik/RadControls/Editor/ToolsFile.xml"
ExternalDialogsPath="~/login/sites/editor/telerik/RadControls/Editor/EditorDialogs"
OnClientLoad="onClientLoad" EnableEmbeddedSkins ="true">
</telerik:RadEditor>
I have a RadDropDownTree using persistence framework to retain the selected combo value. My code is below.
When a user visits my page, the persistence framework correctly pulls the correct RadDropDownTree1.SelectedValue from the cookie and restores the RadDropDownTree as I expect. The issue is when I try to read RadDropDownTree1.SelectedValue after calling loadState in my code below (highlighted in bold) the value is always empty "". I presume this is due to a timing issue? What would be the correct way to do this? private static readonly string CookieName = "TestCookie";protected void Page_Init(object sender, EventArgs e){ RadPersistenceManager1.StorageProviderKey = CookieName; RadPersistenceManager1.StorageProvider = new CookieStorageProvider(CookieName);}protected void Page_Load(object sender, EventArgs e){ if (!IsPostBack) { if (Request.Cookies[CookieName] != null) { RadDropDownTree1.DataBind(); RadPersistenceManager1.LoadState(); Label1.Text = RadDropDownTree1.SelectedValue; } } }protected void RadDropDownTree1_EntriesAdded(object sender, DropDownTreeEntriesEventArgs e){ //save selections RadPersistenceManager1.SaveState();}