Hi,
i am trying to pull up data into RadDropDownList on EditItemTemplate from Vendors Table which has two columns VendorID and VendorName. But this RadGrid datasouce bound to anther table which is ItemDescription table with multiple columns along with VendorID and VendorName. All i am looking for when user will add the item in the grid, popup vendors name and give them ability to select and save it to ItemDescription table and when they will edit the existing item display vendor name as read only.
Note: i was able to pull up data from vendors Table and save only VendorId into ItemDescription table, not VendorName though
Thanks in advanced!

Hello,
It seems that tap and hold context menus are not working for our iPad users on the latest iOS version(13.1.2). We are able to reproduce the issue with our inhouse iPad even when using Telerik's Demo.
Has this been reported yet? Any workarounds?

I started with this demo: Live Demos\DataForm\Data-Binding\Client-Data-Source-Binding
The demo code is working well.
However, I run into a problem when I try to add a TimePicker or DateTimePicker to the EditItemTemplate or InsertItemTemplate, as it is seems to be causing the ItemTemplate to not "hide". Also, the clock icon on the picker fails to display the popup with the list of times.
Pasting the following into the EditItemTemplate or InsertItemTemplate is causing it to break:
<div class="rdfRow"> <telerik:RadTimePicker RenderMode="Lightweight" ID="temp" Width="100px" runat="server" dateinput-label="" DateInput-DateFormat="HH:mm" TimeView-TimeFormat="HH:mm"></telerik:RadTimePicker></div>
There are no problems however if I add the above control elsewhere in the page. A DatePicker works fine.
There are no console errors and this behaviour occurs in both Chrome and Edge.

Hi,
In treeview from server side code we adding nodes and images in each node. like below in screenshot
http://prntscr.com/qcvcv3
But when deep sub level folders like above 10,11,12,13 ....., image size will decrease and after 14 ,15 no more image appear, like below screenshot
http://prntscr.com/qcvdmn
What is the issue ? my code is
Private Sub ExploreTreeView(ByVal tnode As RadTreeNode)
Dim tempnode As New RadTreeNode(foldername, row("Database").ToString.Trim)
tempnode.CssClass = "GridCellSpace"
tempnode.ImageUrl = "images/Icons/DbFolder.png"
tempnode.Attributes("id") = Guid.NewGuid().ToString()
tnode.Nodes.Add(tempnode)
End Sub
Inside rad panelbar item i added rad RadTreeView and i set width = 330 px and height = 400px
http://prntscr.com/qcvg6s
Pls reply asap
Thanks
Hi,
I am using rad button with image and text with Bootstrap skin, in code behind i set border color to white,i want to change button back color as green when mouse over the button, but currently it changing light gray color, how to change some other color when mousehover the button. i used HoveredCssClass also, but not yet change color. HoveredCssClass="btncolorch"
.btncolorch {
border-color:purple;
background-color : red;
}
http://prntscr.com/qcx6sq
Thanks
I am working with a RadGrid, I've followed several examples but nothing seems to work for what I want.
In my picture I show my example of what I am wanting. I want a button to appear in the header portion of the RadGrid next to Page Size.
Thanks

Hi,
How to remove rad panel bar header in each panel item.i am used following css to remove header, when first time it work what i expect, but when post pack page, header for all panel item will appear again.I have 3 panel items.
<style type="text/css">
html .RadPanelBar .sampleCssClass {
display: none;
}
</style>
Screenshots :
When load first time no headers - http://prntscr.com/qbgrq0
when i click top combobox and page get post back and header will appear to all panel items - http://prntscr.com/qbgsbk
What i am expect - http://prntscr.com/qbgxrw
I applied class in code behind for all panel items also , but still appear.
Note : in panel bar i used RenderMode as Classic . Following css i used to remove brodres
.RadPanelBar .rpRootGroup,
.RadPanelBar .rpRootGroup .rpLink
{
border: none !important;
color: #5F5F5F;
text-decoration: none;
border-bottom-width: 0px !important;
}
.RadPanelBar .rpOut
{
border-bottom-width: 0px !important;
}
Pls reply asap
Thanks
I've tried several different articles with no luck. I'm using 2018.3.910.45. Any suggestions? It keeps referencing the smart tag, but I don't see anything obvious in smart tag.
<httpHandlers> <add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" validate="false" /> <add path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler" verb="*" validate="false" /> <add path="ChartImage.axd" type="Telerik.Web.UI.ChartHttpHandler" verb="*" validate="false" /> <add path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler" verb="*" validate="false" /> <add path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler" verb="*" validate="false" /> </httpHandlers><system.webServer> <validation validateIntegratedModeConfiguration="false" /> <modules> <remove name="FormsAuthentication" /> </modules> <handlers> <remove name="ExtensionlessUrlHandler-Integrated-4.0" /> <remove name="OPTIONSVerbHandler" /> <remove name="TRACEVerbHandler" /> <remove name="ChartImage_axd" /> <remove name="Telerik_Web_UI_SpellCheckHandler_axd" /> <remove name="Telerik_Web_UI_DialogHandler_aspx" /> <remove name="Telerik_RadUploadProgressHandler_ashx" /> <remove name="Telerik_Web_UI_WebResource_axd" /><add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" /> <add name="Telerik_Web_UI_WebResource_axd" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" preCondition="integratedMode" /> <add name="Telerik_Web_UI_DialogHandler_aspx" path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler" verb="*" preCondition="integratedMode" /> <add name="ChartImage_axd" path="ChartImage.axd" type="Telerik.Web.UI.ChartHttpHandler" verb="*" preCondition="integratedMode" /> <add name="Telerik_Web_UI_SpellCheckHandler_axd" path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler" verb="*" preCondition="integratedMode" /> <add name="Telerik_RadUploadProgressHandler_ashx" path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler" verb="*" preCondition="integratedMode" /> </handlers> </system.webServer>
Hello,
We have been using Telerik.Web.UI(v4.0.30319) SpellCheck control. This control loads old version jquery(v1.11.0). We are updating jQuery reference in our project to 1.12.2 but SpellCheck control is still loading 1.11.0 jquery. I followed a post in Telerik Forums but I cannot get external jQuery loaded using that post.
SpellCheckCtrl.asx
<form id="form1" runat="server">
<script src="../../../../Scripts/jquery-1.12.2.js"></script>
<telerik:RadScriptManager runat="server" ID="RadScriptManager1" EnableEmbeddedjQuery="false">
<Scripts>
<asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQuery.js" Path="~/Scripts/jquery-1.12.2.js" />
<asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.Core.js" />
<asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQueryExternal.js" />
<asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQueryPlugins.js" />
</Scripts>
</telerik:RadScriptManager>
<telerik:RadSpell ID="spell1"
runat="server"
IsClientID="true"
HandlerUrl="~/Telerik.Web.UI.DialogHandler.axd"
DictionaryPath="~/SpellCheck/"
AllowAddCustom="false"
SpellCheckProvider="EditDistanceProvider"
EditDistance="2"
ButtonType="None"></telerik:RadSpell>
<script language="c#" runat="Server">
protected override void OnLoad(EventArgs e)
{
base.OnLoad(e);
if (this.spell1 != null)
{
var userSettings = QM.Live.ServiceClients.ServiceLocator.Get<QM.Live.Utilities.Client.UserSettings>();
this.spell1.Language = userSettings.GetCulture();
var spellCheckCulture = userSettings.SpellCheckCulture;
if (spellCheckCulture == null) spellCheckCulture =
QM.Live.Utilities.Client.Constants.DefaultCulture;
this.spell1.DictionaryLanguage = QM.Live.Utilities.Client.SpellChecker.GetDictionary(spellCheckCulture);
}
}
</script>
</form>
<script>
var spellCheckerClientId = '<%=spell1.ClientID %>';
</script>
Web config:
<add key="Telerik.ScriptManager.EnableEmbeddedjQuery" value="false" />
If I don't add web config key, this control always loads embedded jquery. If I add web config key, I see that jQuery is undefined. Please help to get it resolved. Thanks.

I have a RadGid with an inline edit from that contains a RadEditor
on adding a new row the RadEditor is no longer displayed and a javascript error is thrown from the Telerik.Web.UI.WebResource
"Uncaught TypeError: h is not a constructor
var a = g ? new h(g) : new h"
This was working with out issue when we initially upgraded to Telerik.Web.UI, Version=2019.1.215.0.
Is this a bug that has popped up in resource that is downloaded for MicrosoftAjax.js or should at something else?
