Telerik Forums
Community Forums Forum
1 answer
183 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
287 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
233 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
6 answers
116 views

Clicking on "Formatting options" above the post text box does nothing other than changing the action link to "Hide formatting options"... no formatting options actually appear.

Console shows an "Uncaught ReferenceError: Telerik is not defined" error, possibly unrelated.

Google Chrome 80.0.3987.106 (Official Build) (64-bit) (cohort: 80_87_Win)
Revision f68069574609230cf9b635cd784cfb1bf81bb53a-refs/branch-heads/3987@{#882}
OS Windows 10 OS Version 1909 (Build 18363.657)

Kristian Kirov
Telerik team
 answered on 02 Mar 2020
2 answers
100 views

When posting or replying in the forums, the content text box cannot be resized.

 

This isn't too bad for posting, but when replying, you can only fit 7 or 8 lines on in the box before you have to scroll... this makes it incredibly difficult to write a detailed response, especially with code samples.

Kristian Kirov
Telerik team
 answered on 28 Feb 2020
4 answers
134 views

Hi, I have a stupid question:

How can I format a code snippet here in the forum in the way it looks when admins have code examples in answers?
And witch browser I have to use for working formatting options?

BR
Gert

Gert
Top achievements
Rank 1
 answered on 19 Feb 2020
14 answers
378 views
Something that would be nice is the ability to edit a post within this forum.  I know that quite often I come to the forums very late at night and on occasion my spelling and/or grammer isn't so great.  It would be cool to come back the next morning and clean it up.


SWEETNESSS!
Kristian Kirov
Telerik team
 answered on 18 Feb 2020
4 answers
94 views

Could you please deactivate my Telerik account and remove login credentials from your system? This was created with my old work email address but I have changed job so I will not be able to reply any message send to my account's email address.

Christian
Telerik team
 answered on 16 Jan 2020
3 answers
103 views
Hello,    
        
Please be kind as to remove my profile and complete account as i don't use it 

thank you in advance..

Customer ID: NK1787543
Matthew
Telerik team
 answered on 09 Dec 2019
8 answers
515 views

I wanted to find out why Telerik has changed the format of posting messages.

 

1) I might be missing something but there is no way to edit your post.  I have been in the Telerik forums for many years and remember the time there was that feature.

2) If your post is moved to another forum should the author not be notified in email?  It just seems to disappear.  When I search the forum I *suspect* might be where it has been moved to I cannot find it.

3)The search feature does not return a message with your name in it.

 

4) Can we view posts filtered by just our own?

 

Thanks,

Reid

Anshul
Top achievements
Rank 1
 answered on 25 Nov 2019
Narrow your results
Selected tags
Tags
+? more
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?