Hi Team,
I am using Two Rad Editors, for first RAD Editor set property EditModes="Design". copied below mentioned data from MS word and paste into Rad Editor.
ex: Copy below sample data
.Parent1
.Child1
.Child2
<telerik:RadEditor RenderMode="Lightweight" SkinID="BasicSetOfTools" Width="100%" EnableTextareaMode="false" BorderStyle="None"
runat="server" Content='<%# Bind("Comments") %>' Height="100px" Font-Names="Tahoma"
ID="txtBox_PEdit" EditModes="Design" StripFormattingOptions="NoneSupressCleanMessage" StripFormattingOnPaste="MSWord">
<Tools>
<telerik:EditorToolGroup>
</telerik:EditorToolGroup>
/Tools>
</telerik:RadEditor>
After saving data, in Rad editor am seeing unnecessary spaces and new line. please see attached screen shot.
please suggest me how I will remove unnecessary spaces and new lines.
<telerik:RadEditor RenderMode="Lightweight" SkinID="BasicSetOfTools" EditModes="Preview"
ID="lbl_Description" Width="99%" runat="server" Height="100px" BorderStyle="None"
Font-Names="Tahoma" Font-Size="11px" Style="margin-bottom: 5px;" Content='<%# Eval("Comments") %>'>
<Tools >
<telerik:EditorToolGroup >
</telerik:EditorToolGroup>
</Tools>
</telerik:RadEditor>
When the user click on the ShowCheckAll button either all entries aree selected or unselected. Looking at the documentation I cannot find any event that is fired for that. Even if there is no specific event for that, I would expect that ClientEntryAdded or ClientEntryRemoved for each of the entries would be fired but thatis not the case either.
I need to handle this event as part of a logic that checks if and when the set of selected items is changed. Is there any other way to get notified via an event when ShowCheckAll is clicked ?
Thanks
Zeev
Hi,
we are using CDN to get Telerik scripts and styles. All is set in web.config:
<add key="Telerik.ScriptManager.TelerikCdn" value="Enabled" />
<add key="Telerik.ScriptManager.TelerikCdn.CombinedResource" value="Enabled" />
<add key="Telerik.StyleSheetManager.TelerikCdn" value="Enabled" />
<add key="Telerik.StyleSheetManager.TelerikCdn.CombinedResource" value="Enabled" />
Now I found that some controls are broken. I tried to identify problem, so deactivated CDN. All works fine. Controls are ok.
So I disabled CombinedResources and found, that all CSS files are for lightweight rendering.
https://d35islomi5rx1v.cloudfront.net/ajaxz/2017.2.711/CombinedBaseSkinClassic.css
But we are using custom skins in Classic render mode. I tried to set it to web.config too, but it doesn't work:
<add key="Telerik.Web.UI.RenderMode" value="classic" />
So when CDN started to provide lightweight styles and how to get classic ones?
Regards
René
I have a radgrid with these propertie
AutoGenerateColumns="false"
AllowAutomaticDeletes="true"
AllowSorting="True"
AllowPaging="true"
AllowFilteringByColumn="true"
OnInsertCommand="rgData_InsertCommand"
OnUpdateCommand="rgData_UpdateCommand"
OnItemDataBound="rgData_ItemDataBound"
OnDeleteCommand="rgData_DeleteCommand"
EnableViewState="true"
OnItemCommand="rgData_ItemCommand"
ShowStatusBar="true"
OnInit="RgHomicideData_Init"
OnNeedDataSource="rgData_NeedDataSource"
CommandItemStyle-HorizontalAlign="Left">
The radgrid works as expected. I use this code in my needdatasource
string strYear = DateTime.Now.Year.ToString();
DateTime StartDate = Convert.ToDateTime("1/1/" + strYear);
DateTime EndDate = Convert.ToDateTime("12/31/" + strYear);
rgData.DataSource = DbContext.tblData
.Where(d => d.deleted == false).ToList();
sort and paging is working properly
Now I want to filter the data by a date range so I use this code
Boolean DateChk1 = dpStartDate.SelectedDate.HasValue;
Boolean DateChk2 = dpStartDate.SelectedDate.HasValue;
string comboSearch = cboxSearch.Text;
int intComboSearch = comboSearch.Length;
if (comboSearch.Length > 0 && DateChk1 == true && DateChk2 == true)
{
DateTime Date1 = dpStartDate.SelectedDate.Value;
DateTime Date2 = dpEndDate.SelectedDate.Value;
rgData.DataSource = DbContext.AAADataSearchByDateRange(comboSearch, Date1, Date2).ToList();
The data refreshes and shows the filtered data. Now if I click the column header to sort or I chnage to another page the radgrid looses all data and all I see is a line on the screen. Can someone please explain the problem and how to fix it
Thanks
Hi,
I am new to the Telerik, I have big story to ask, first I installed the Version=2016.1.113.35 on my Local machine, and started using the application everything was working good, before that I had different Version=2015.2.623.45 of Telerik on the same machine on top of it I installed the current Version=2016.1.113.35. But when I deployed it on the Server, and server has the older version= 2015.2.623.45 that I had on my machine. And on the Server Telerik controls stopped working like RadEditor was completely disabled.
Then I did some crazy mistake, I tried to manually copy the dlls of the same Version from Server and added them in to References thinking that this will work as backward compatibility would exist. Now it started giving me different Compilation errors. I am little frustrated can somebody please help me in this regards.
My errors are as below:
<pre>
Unable to resolve type 'Telerik.Web.UI.RadAjaxLoadingPanel, Telerik.Web.UI, Version=2016.1.113.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4'
Unable to resolve type
'Telerik.Web.UI.RadTextBox, Telerik.Web.UI, Version=2016.1.113.35,
Culture=neutral, PublicKeyToken=121fae78165ba3d4'
Unable to resolve type
'Telerik.Web.UI.RadMaskedTextBox, Telerik.Web.UI, Version=2016.1.113.35,
Culture=neutral, PublicKeyToken=121fae78165ba3d4'
Unable to resolve type
'Telerik.Web.UI.RadAutoCompleteBox, Telerik.Web.UI, Version=2016.1.113.35,
Culture=neutral, PublicKeyToken=121fae78165ba3d4'
Unable to resolve type
'Telerik.Web.UI.RadAjaxManager, Telerik.Web.UI, Version=2016.1.113.35,
Culture=neutral, PublicKeyToken=121fae78165ba3d4'
</pre>
And my Web Config is as below any help please?
<PRE>
<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="Telerik_Web_UI_WebResource_axd" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" preCondition="integratedMode,runtimeVersionv2.0" />
<add name="Telerik_Web_UI_DialogHandler_aspx" path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler" verb="*" preCondition="integratedMode,runtimeVersionv2.0" />
<add name="Telerik_Web_UI_SpellCheckHandler_axd" path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler" verb="*" preCondition="integratedMode,runtimeVersionv2.0" />
<add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add name="ChartImage_axd" path="ChartImage.axd" type="Telerik.Web.UI.ChartHttpHandler" verb="*" preCondition="integratedMode,runtimeVersionv2.0" />
<add name="Telerik_RadUploadProgressHandler_ashx" path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler" verb="*" preCondition="integratedMode,runtimeVersionv2.0" />
</PRE>
I have a RadComboBox that shows two columns in the drop down, I have a header for them as well. I want the 2 columns to show once the item is selected. I'm new to Telerik, so I'm not sure if I'm saying this correctly, but I essentially would like a DataTextField ='ID + Name".
Is there a way to make 2 datatextfields show up in the selected value of a RadComboBox, either in ASP.Net, or VB/C#?
Thank you,
J
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. |
|