Telerik Forums
Community Forums Forum
0 answers
109 views
Hi everyone

I hope that we will have a great time ðŸ¥³

peterson
Top achievements
Rank 1
 asked on 24 May 2020
7 answers
182 views
I'm just new here and I'm glad to be a part of this community. I know it's a great Forum site:)
peterson
Top achievements
Rank 1
 answered on 24 May 2020
3 answers
74 views
Dear Telerik team,
please delete (not deactivate) my account and all associated data, thank you.
Best regards.
Christian
Telerik team
 answered on 18 May 2020
1 answer
171 views

Does opening a support case count towards the support ticket count (I get 10 per year under my account) if the issue is a result of a bug?

I find getting help in the forums is very hit and miss, but there are some things which are clearly broken, and I don't want to waste my support tickets when it's a problem with the product.

Dimo
Telerik team
 answered on 18 May 2020
4 answers
68 views
Could you please deactivate my Telerik account and remove login credentials from your system? 
Missing User
 answered on 14 May 2020
1 answer
283 views

We are running into an error with Open Access 2015.1.225.1.  We've used the hotfix file that was attached to another forum post, but sometimes when users submit information we get the following error.

Failed to retrieve the automatically incremented column value from the server.  Possible reason:  Trigger does not perform 'select ID from insert' as last operation.  Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.  Exception Details: Telerik.OpenAccess.Exceptions.InvalidOperationException: Failed to retrieve the automatically incremented column value from the server.

This was supposed to be fixed in this hotfix, but we don't use SQL Server 2016.  We are using SQL Server 2014.  I'm at my wits end from trying to fix this. I've made sure all incremented IDs are database calculated, etc.  There isn't much out there as this product is dead, but I'm hoping someone might have a tip or trick for fixing this.

Viktor Tachev
Telerik team
 answered on 07 May 2020
1 answer
108 views
Similar to StackOverflow - it would be good to have up/downvotes and a reputation system
Dimo
Telerik team
 answered on 20 Apr 2020
1 answer
168 views

Good afternoon, I am new to the world of sitefinity and am currently having trouble loading the vsix plugin in my sitefinity project. I have managed to install sitefinity with its nuget, also vsix, but when I want to enable the vsix plugin, the visual studio 2017 application crashes with the following error.

If I uninstall the application or disable it, the project works without problems.

I have uninstalled and reinstalled the plugin, created a new sitefinity project

Stanislav Velikov
Telerik team
 answered on 10 Apr 2020
12 answers
259 views
Hi

We are using Telerik RadEditor in our web application, but some pretty features (like all the editors, ImageEditor, FlashEditor, ...) are not working. The only working editor is LinkEditor, so we had to disable the other editors.

We are using Telerik.Web.UI_2013_3_1015_Dev, Visual studio 2010.
The problem is, that when I try to create a simple web application with RadEditor, everything works fine, but when I use it in our complex company application, the editors don't work.
I've tried to add some lines into web.config, but it didn't help.

  <httpHandlers>
   <add verb="*" path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.Upload.RadUploadProgressHandler, Telerik.Web.UI"/>
   <add verb="*" path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4" validate="false"></add>
   <add verb="*" path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4"></add>
   <add verb="*" path="ChartImage.axd" type="Telerik.Web.UI.ChartHttpHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4" validate="false"/>
   <add path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI" validate="false"/>
  </httpHandlers>
  </system.web>
  <system.webServer>
    <validation validateIntegratedModeConfiguration="false" />
    <modules runAllManagedModulesForAllRequests="true">
      <add name="RadCompression" type="Telerik.Web.UI.RadCompression"/>
      <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule, Telerik.Web.UI" preCondition="managedHandler"/>
    </modules>
    <handlers>
      <add name="ChartImage.axd_*" path="ChartImage.axd" verb="*" type="Telerik.Web.UI.ChartHttpHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4" preCondition="integratedMode"/>
      <add name="Telerik.Web.UI.SpellCheckHandler.axd_*" path="Telerik.Web.UI.SpellCheckHandler.axd" verb="*" type="Telerik.Web.UI.SpellCheckHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4" preCondition="integratedMode"/>
      <add name="Telerik.Web.UI.DialogHandler.aspx_*" path="Telerik.Web.UI.DialogHandler.aspx" verb="*" type="Telerik.Web.UI.DialogHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4" preCondition="integratedMode"/>
      <add name="Telerik.RadUploadProgressHandler.ashx_*" path="Telerik.RadUploadProgressHandler.ashx" verb="*" type="Telerik.Web.UI.Upload.RadUploadProgressHandler, Telerik.Web.UI" preCondition="integratedMode"/>
      <add name="Telerik.Web.UI.WebResource.axd_*" path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI" preCondition="integratedMode"/>
    </handlers>
  </system.webServer>

//this is needed, otherwise I'm not able to run the application with radEditor
  <runtime>
      <dependentAssembly>
        <assemblyIdentity name="Telerik.Web.UI" publicKeyToken="121fae78165ba3d4" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-2013.3.1015.40" newVersion="2013.3.1015.40" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>

Code behind:
(called if !PostBack)

//hack solution - because of RadEditor bug in IE9 with br tags
        RadEditor1.DisableFilter(EditorFilters.ConvertToXhtml)

        RadEditor1.Content = string.Empty;
       
        RadEditor1.EditModes = EditModes.Design | EditModes.Preview;
       
        RadEditor1.LocalizationPath = "~/App_GlobalResources/RadEditor/en";
        RadEditor1.ToolsFile = "~/App_GlobalResources/RadEditor/Tools/FullSetTools.xml";



Markup:
<telerik:RadEditor runat="server" ID="RadEditor1"
 Language="en-US" EnableResize="false" SkinID="DefaultSetOfTools" Height="300px" Width="98%">
</telerik:RadEditor>

I can't send you more of the code because of our company rules.
Can you please help with some hacks or settings in web.config ?

Thank you
T

When I try to open ImageEditor, I get this Exception:

Server

 

Error in '/' Application.

--------------------------------------------------------------------------------

Expression expected

Description:

 

An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception

Details: Telerik.Web.UI.ParseException: Expression expected

Source

 

Error:

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.

Stack

Trace:

[ParseException: Expression expected]

Telerik

.Web.UI.ExpressionParser.ParsePrimaryStart() +245

Telerik

.Web.UI.ExpressionParser.ParsePrimary() +47

Telerik

.Web.UI.ExpressionParser.ParseUnary() +406

Telerik

.Web.UI.ExpressionParser.ParseMultiplicative() +54

Telerik

.Web.UI.ExpressionParser.ParseAdditive() +54

Telerik

.Web.UI.ExpressionParser.ParseComparison() +69

Telerik

.Web.UI.ExpressionParser.ParseLogicalAnd() +49

Telerik

.Web.UI.ExpressionParser.ParseLogicalOr() +49

Telerik

.Web.UI.ExpressionParser.ParseExpression() +74

Telerik

.Web.UI.ExpressionParser.Parse(Type resultType) +76

Telerik

.Web.UI.DynamicExpression.ParseLambda(ParameterExpression[] parameters, Type resultType, String expression, Object[] values) +92

Telerik

.Web.UI.DynamicExpression.ParseLambda(Type itType, Type resultType, String expression, Object[] values) +132

Telerik

.Web.UI.GridDynamicQueryable.Where(IQueryable source, String predicate, Object[] values) +235

Telerik

.Web.UI.GridDataTableFromEnumerable.FillData35() +3952

Telerik

.Web.UI.GridDataTableFromEnumerable.FillData() +1078

Telerik

.Web.UI.GridResolveEnumerable.Initialize() +58

Telerik

.Web.UI.GridResolveEnumerable.EnsureInitialized() +45

Telerik

.Web.UI.GridResolveEnumerable.get_DataTable() +36

Telerik

.Web.UI.GridEnumerableFromDataView..ctor(GridTableView owner, DataView dataView, Boolean autoGenerateColumns, GridColumnCollection presentColumns, String[] additionalField, Boolean retrieveAllFields, Boolean enableSplitHeaderText) +245

Telerik

.Web.UI.GridDataSourceHelper.CreateGridEnumerable(GridTableView owner, IEnumerable enumerable, Boolean caseSensitive, Boolean autoGenerateColumns, GridColumnCollection presentColumns, String[] additionalField, Boolean retrieveAllFields, Boolean enableSplitHeaderText) +109

Telerik

.Web.UI.GridDataSourceHelper.GetResolvedDataSource(GridTableView owner, Object dataSource, String dataMember, Boolean caseSensitive, Boolean autoGenerateColumns, GridColumnCollection presentColumns, String[] additionalField, Boolean retrieveAllFields, Boolean enableSplitHeaderText) +188

Telerik

.Web.UI.GridTableView.get_ResolvedDataSource() +256

Telerik

.Web.UI.GridTableView.CreateChildControls(IEnumerable dataSource, Boolean useDataSource) +340

System.Web.UI.WebControls.CompositeDataBoundControl.PerformDataBinding(IEnumerable data) +117

System.Web.UI.WebControls.DataBoundControl.OnDataSourceViewSelectCallback(IEnumerable data) +205

System.Web.UI.DataSourceView.Select(DataSourceSelectArguments arguments, DataSourceViewSelectCallback callback) +131

System.Web.UI.WebControls.DataBoundControl.PerformSelect() +233

Telerik

.Web.UI.GridTableView.PerformSelect() +38

System.Web.UI.WebControls.BaseDataBoundControl.DataBind() +140

Telerik

.Web.UI.GridTableView.DataBind() +389

Telerik

.Web.UI.RadGrid.DataBind() +191

Telerik

.Web.UI.RadGrid.AutoDataBind(GridRebindReason rebindReason) +4246

Telerik

.Web.UI.RadGrid.Rebind() +71

Telerik

.Web.UI.FileExplorer.FileList.UpdateLocalization() +631

Telerik

.Web.UI.FileExplorer.FileList.ControlsPreRender() +244

Telerik

.Web.UI.RadFileExplorer.ControlPreRender() +549

Telerik

.Web.UI.RadWebControl.OnPreRender(EventArgs e) +47

System.Web.UI.Control.PreRenderRecursiveInternal() +239

System.Web.UI.Control.PreRenderRecursiveInternal() +337

System.Web.UI.Control.PreRenderRecursiveInternal() +337

System.Web.UI.Control.PreRenderRecursiveInternal() +337

System.Web.UI.Control.PreRenderRecursiveInternal() +337

System.Web.UI.Control.PreRenderRecursiveInternal() +337

System.Web.UI.Control.PreRenderRecursiveInternal() +337

System.Web.UI.Control.PreRenderRecursiveInternal() +337

System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +5044


Rumen
Telerik team
 answered on 31 Mar 2020
1 answer
217 views
I'm currently trying to apply a font awesome icon to a kendo grid cell button. However I have been unsuccessful on the custom icon filling the entire button or finding proper documentation to remedy my issue. If anyone can provide guidance I would greatly appreciate it. Thanks!
Silviya Stoyanova
Telerik team
 answered on 30 Mar 2020
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?