Telerik Forums
UI for ASP.NET AJAX Forum
19 answers
290 views

Hi Everyone,

I assume the RadEditor for SharePoint 2013 cannot be used in SharePoint 2016. Right?

Is there any release planned for the RadEditor, and in general for the RadControls, for SharePoint 2016?

Could you please inform the timeline?

Thanks in advance

Rumen
Telerik team
 answered on 16 Mar 2021
8 answers
680 views

 

Hello

Are there any plans to support Sharepoint Server 2019  (On-premises)

Thank You

Rumen
Telerik team
 answered on 30 Oct 2020
2 answers
83 views

Please state whether your WSP for RadEditor is available on SharePoint Online as a sandbox app, or in some other format. If it is not available, please state whether you plan on making it available in the near future. Thank you. 

 

Pistle
Top achievements
Rank 1
Veteran
 answered on 02 Oct 2020
2 answers
52 views

Hi, we successfully implemented RadEditor on sharepoint 2010.

Whenever a user is inserting a picture (using Picture Manager) and assigning a link to that picture, it's surrounded by default blue link frame/border. The user might be able to edit HTML to get rid of it. However, most users aren't familiar with HTML editing.
Is there a way to suppress the default behavior with a simpe setting in the ListConfigFile.xml ?

 

Thanks in advance

Wolfgang

Pistle
Top achievements
Rank 1
Veteran
 answered on 02 Oct 2020
4 answers
32 views

Hi Everyone,

versus most articles here about a disabled tab or upload button I noticed for most users a red bulb beside any picture they are trying to upload via Rad Editor (2016.2.504.35) image manager. Picture sizes are below the limitation settings in ConfigFile.xml/ListConfigFile.xml

Permissions to the three named localizations are set to Contribute to the relevant SharePoint group.

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
 <property name="EditModes">Design,Html</property>
 <property name="Height">300px</property>
 <property name="Width">500px</property>
 <property name="UseRadContextMenu">false</property>
      
 <property name="ImagesPaths">
   <item>/Corp Comm use only images</item>
   <item>/Corp Comm use only documents</item>
   <item>/News Images</item>
        </property>
 <property name="MediaPaths">
   <item>/Corp Comm use only images</item>
   <item>/Corp Comm use only documents</item>
        </property>
 <property name="FlashPaths">
   <item>/Corp Comm use only images</item>
   <item>/Corp Comm use only documents</item>
        </property>
        <property name="ImagesFilters">
         <item>*.jpg</item>
  <item>*.jpeg</item>
         <item>*.gif</item>
         <item>*.png</item>
        </property>
        <property name="MaxMediaSize">5242880</property>
        <property name="MaxFlashSize">5242880</property>
        <property name="MaxImageSize">204800</property>
</configuration>

 

Pistle
Top achievements
Rank 1
Veteran
 answered on 02 Oct 2020
17 answers
199 views

When I am opening RadGrid Designer page, it is showing me HTTP 403 Forbidden. I have site collection administration permissions.

http://abd-sps-devfe/_layouts/15/Telerik.Ajax.SharePoint/GridWebPartDesigner.aspx

I am using this version Telerik_Web_Parts_For_Sharepoint2013_2015_2_826.

 

Pistle
Top achievements
Rank 1
Veteran
 answered on 02 Oct 2020
6 answers
129 views

We have telerik:RadMultiPage with 3 RadPageView control on a Visual Webpart in sharepoint site.

When this webpart is opened user enters few detail and then click on next button which will take then to next RADPageView .

But on Production server we are getting following error when user click on Next button 

ScriptResource.axd?d=OuxNwVWHD89YhOJQ8KoflBg1KGlPeB5feLGISY35w5AR9riq5maPEdVKtJ3yHJoTRwy9UXHCxY_UZt…:5 Uncaught Sys.WebForms.PageRequestManagerParserErrorException: Sys.WebForms.PageRequestManagerParserErrorException: The message received from the server could not be parsed. Common causes for this error are when the response is modified by calls to Response.Write(), response filters, HttpModules, or server trace is enabled.
Details: Error parsing near '
<!DOCTYPE html PUB'.

We are not having this issue in dev or Test environment , We have tried checking Firewall setting to check if Ajax header information is gettgin trimmed but it is not .

Please let me know If there is anything we can try , or there is any known issue regrading this ?

Pistle
Top achievements
Rank 1
Veteran
 answered on 02 Oct 2020
2 answers
190 views
I want to populate a RadGrid with SharePoint 2010 list data. I cannot figure out how this is accomplished.

Here is my ASPX page:
<SPWebControls:SPDataSource runat="server" ID="dsclientmatter" DataSourceMode="ListItem" UseInternalName="true">
  <SelectParameters>
      <asp:Parameter Name="WebUrl" DefaultValue="/configuration/" />
      <asp:Parameter Name="ListID" DefaultValue="4056449D-1884-4C79-AAAD-CD0ABEB2F854" />
      <asp:Parameter Name="ListItemID" DefaultValue="1" />
  </SelectParameters>
</SPWebControls:SPDataSource>
 
<telerik:RadGrid ID="RadGrid1" runat="server" GridLines="None" ShowStatusBar="true" PageSize="7" AllowPaging="True" DataSourceID="dsclientmatter" >
    <ClientSettings>
        <Selecting AllowRowSelect="True" />
    </ClientSettings>
<MasterTableView datasourceid="">
<CommandItemSettings ExportToPdfText="Export to PDF"></CommandItemSettings>
 
<RowIndicatorColumn Visible="True" FilterControlAltText="Filter RowIndicator column">
<HeaderStyle Width="20px"></HeaderStyle>
</RowIndicatorColumn>
 
<ExpandCollapseColumn Visible="True" FilterControlAltText="Filter ExpandColumn column">
<HeaderStyle Width="20px"></HeaderStyle>
</ExpandCollapseColumn>
 
<EditFormSettings>
<EditColumn FilterControlAltText="Filter EditCommandColumn column"></EditColumn>
</EditFormSettings>
</MasterTableView>
 
<FilterMenu EnableImageSprites="False"></FilterMenu>
</telerik:RadGrid>

Here is my code-behind:
protected void Page_Load(object sender, EventArgs e)
        {
            SPSite site = new SPSite("http://abcdev");
             
            using (SPWeb web = site.OpenWeb())
            {
                SPList clientlist = web.Lists.TryGetList("clientmatter");
                DataTable dt = new DataTable();
                SPQuery query = new SPQuery();
                query.ViewFields = "<Where><Eq><FieldRef Name='clientid'/><Value Type='Text'>12345</Value></Eq></Where>";
                SPListItemCollection items = clientlist.GetItems(query);
                if(items != null)
                {
                    if(items.Count > 0)
                    {
                        dt = items.GetDataTable();                       
                        GridView1.DataSource = dt;
                        GridView1.DataBind();
                         
                    }
                }
            }
        }

I don't know if this is the best way to start, but I do know something is wrong because I cant render any data. Plus, I don't understand why by RadGrid ID will not compile. I get an error stating "The name 'GridView1' does not exist in the current context". Why. That is the ID of my RadGrid.

My end goal is to create a RadGrid that I can filter by individual columns, such as: name, client#, topic, etc. I am not sure if the filtering allows for multiple entries, but I would like to be able to filter on more than one criteria. Also, wildcard searches are very important.

Thank you for the help!
Pistle
Top achievements
Rank 1
Veteran
 answered on 01 Oct 2020
4 answers
169 views
I used the Telerik Control Panel from my SharePoint 2010 server to install the latest ASP.NET AJAX controls. However, the controls are not available when adding Web parts to a SharePoint page. Also, I created a new visual Web part from within Visual Studio 2010 and added a RadComboBox. I then deployed this Web part to my SharePoint server. Visual Studio displays a message that it successfully deployed the Web part. However, after attempting to add my newly deployed Web part to a page, I receive the error "An unexpected error has occurred...."

Is there something beyond the Telerik Control Panel automated installation that is required to make the Telerik AJAX controls available to SharePoint in custom Web parts and on their own?
Pistle
Top achievements
Rank 1
Veteran
 answered on 01 Oct 2020
2 answers
64 views
Hello,

We are currently in the process of upgrading a number of site collections from SharePoint 2010 to SharePoint 2013.
A few of these site collections uses Telerik Components, for example Telerik RadEditor.

If we open one of these sites we get the following error message:

Could not load file or assembly 'RadEditorSharePoint, Version=5.7.3.0, Culture=neutral, PublicKeyToken=1f131a624888eeed' or one of its dependencies. The system cannot find the file specified.

Our plan is to not do a visual upgrade but instead keep running the sites in SP2010 UI mode whenever possible. We're not sure if this is supported for the Telerik SharePoint 2013 web parts?
What would be the best way to handle this? We assume we have to install the 2013 version of the Telerik components.

We tried installing Telerik_Web_Parts_For_Sharepoint2013_2015_2_826_Trial.msi but that doesn't seem to work. We still get the same error message.

Any help or suggestions would be much appreciated.
Pistle
Top achievements
Rank 1
Veteran
 answered on 01 Oct 2020
Narrow your results
Selected tags
Tags
+? more
Top users last month
horváth
Top achievements
Rank 2
Iron
Iron
Steve
Top achievements
Rank 2
Iron
Erkki
Top achievements
Rank 1
Iron
Mark
Top achievements
Rank 2
Iron
Iron
Veteran
Jakub
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
horváth
Top achievements
Rank 2
Iron
Iron
Steve
Top achievements
Rank 2
Iron
Erkki
Top achievements
Rank 1
Iron
Mark
Top achievements
Rank 2
Iron
Iron
Veteran
Jakub
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?