Issue with AjaxControlToolkit for SharePoint 2013 Blog site template.

Hi,
Please find below the details of issue -
History - We are working with SharePoint 2013 and we are using AjaxControlToolkit in our project. Basically this is a migration project from MOSS to SharePoint 2013. So we have migrated code MOSS to SharePoint 2013. Previously in MOSS project, AjaxControlToolkit
was used so after migrating we have also used AjaxControlToolkit with updated version which can work in SharePoint 2013. This is working fine now.
Scenario - There is one web application in SharePoint 2013 farm. Under this web application there are two site collections. One site collection is created with Team site template and second site collection is created with Blog site template.
There are three feature in our wsp that we have created. One feature is at web application scope (which will do web.config modifications and it will add below entry in web.config file through SPWebConfigModification in section 'configuration/system.web/compilation/assemblies'
 <add assembly="AjaxcontrolToolkit, Version=4.5.7.725, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e" />  
). And there are two site collection features.
Now when we deploy our solution (wsp) to web application in SharePoint 2013 farm and activate the Web.Config modification feature which is at web application level, it has added above mentioned entry in web.config file.
Our application in first site collection is working fine which we are expecting but in the second site collection which is created using out of box Blog site template, 'comment box' and Post button are invisible as shown in below screen shot -
If we remove below entry from web.config file -
<add assembly="AjaxcontrolToolkit, Version=4.5.7.725, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e" /> 
and refresh the Blog site page then the Comment box and Post button is appearing again as shown in below screen shot -
We also tried with updated versions of AjaxControlToolkit (Version=4.5.7.1005 & 4.5.7.1213) but no success.
I will highly appreciate if you could help me in this.
Thanks for your time.
Thanks & Regards,
Rajendra Gaikwad.

Hi,
As you said, the issue only comes with the Blog site template.
I suggest you take a look at this blog about how to make Ajax Control Toolkit work with SharePoint 2013:
http://andreaswijayablog.blogspot.com/2013/12/ajax-control-toolkit-with-sharepoint.html
Another similar thread for your reference:
http://social.msdn.microsoft.com/Forums/sharepoint/en-US/60fa19fe-86a0-446b-b61f-11a82fe4287f/how-to-implement-ajax-toolkit-for-sharepoint2013?forum=sharepointdevelopment
Thanks
Patrick Liang
Forum Support
Please remember to mark the replies as answers if they
help and unmark them if they provide no help. If you have feedback for TechNet
Subscriber Support, contact [email protected]
Patrick Liang
TechNet Community Support

Similar Messages

  • SharePoint 2013 Blog Site or Discussion LIst - Comment on a Comment

    Hi,
    Quick question.  Is anyone aware of a plug-in or feature or new blog add-in for SP 2013 that allows "comments on comments".   From what I can tell in the blog site and discussion list, you can only comment on the original comment. 
    You cannot comment on someone else's comment as in a tiered fashion. 
    Any ideas?
    Thanks!
    Thanks! Patti N.

    Hi,
    According to your post, my understanding is that you want to be able to comment on someone else’s comments displayed in a hierarchical structure.
    In SharePoint 2013, it’s by default that the Discussion Board list’s replies are in the “Flat” view, and it won’t display the replies in a hierarchical structure.
    However, the Discussion Board list have another default view is the “Threaded” view, and it can display replies in a hierarchical structure.
    Therefore, I recommend that you can directly modify the default view of the Discussion Board list’s replies to the “Threaded” view to achieve your requirement.
    For SharePoint 2013 Blog site, as a workaround, I suggest that you also can create a Discussion Board list into it to implement this function.
    Best Regards,
    Yumi Fu

  • Display count for each category in sharePoint 2013 blog site

    Hi,
    I have added category list in the left side as web part in SharePoint 2013 blog site.
    Here i want to show the count for each category. And on clicking on the category, it should show the blog posts related to that category.
    Is there any way to do this.
    Please help.
    Thank you.

    Hi Aditi,
    To show item counts on a list, you might need to query the list by title in the navigation menu and retrieve item count in the list, then use CSS to add the number to navigation menu. You need to use Client Object Model and JQuery.
    Here are similar issues:
    http://sharepoint.stackexchange.com/questions/5477/getting-a-count-of-list-items-in-a-list-via-ecmascript
    http://sharepoint.stackexchange.com/questions/18050/how-do-i-get-the-number-of-items-in-a-list
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Blog tools Web part visibility in SharePoint 2013 blog site

    Hi,
    I need the Employee training template for SharePoint 2013 as we have in SharePoint 2007.
    I also checked the below link
    http://www.microsoft.com/government/en-us/campaigns/Pages/SharePoint-Templates.aspx
    Is it suitable for SharePoint 2013 and work as 2007 template feature.
    Is  there any change in this template given in the link or is it affect the site.
    I am working in production server. I don't know the effect.
    Please help
    Thank you.

    I dont think that link will work for SP 2013
    Try below:
    http://www.sharepointsapiens.com/employee-training-management/documentation/installation/
    You can even create your own workflow for same
    https://www.nothingbutsharepoint.com/sites/itpro/Pages/Employee-Training-and-Scheduling-Template-a-couple-fixes-Part-1.aspx
    Also check some templates from below:
    https://demo.sharesquared.com/
    If this helped you resolve your issue, please mark it Answered

  • Error in Archives data in SharePoint 2013 blog site

    Hi,
    I have created a blog site in SharePoint 2013.
    Here when i clicked on the month of june, it shows the header as May but showing the posts of july.
    Is there any solution for this issue.
    Please help.
    Thank you

    Hi,
    I checked the link for the archives, the date interval for the month of June is "31 may 2014 to 30 June 2014".
    Is it possible to change these date interval?
    Please help.
    Thank you.

  • Link Title field to custom display form in SharePoint 2013 blog site

    Hi,
    I have blog site in sharepoint 2013.
    I want to display the item in read only view of the selected item.So I have created one custom display form.
    Now I want to link this display form with the Title Field.
    So that when user click on the title field, the display form should show to view only the item and if the user is approver, can approve also.
    Please help me to achieve this.
    waiting for your quick response.
    Thank you!

    Hi  ,
    According to your description, my understanding is that you want to display custom display form when users click on the title field.
    For achieving your demand, you need to implement an ihttpmodule and intercept the request. For more information, you can refer to the code as below:
    private void context_BeginRequest(object sender, EventArgs e)
    HttpApplication application = sender as HttpApplication;
    if (application != null && application.Context != null && application.Request != null)
    HttpRequest request = application.Request;
    HttpResponse response = application.Response;
    if (request.Url.ToString().ToLower().Contains(http://yoursite/libraryname))
    response.Redirect(newlocationurl);
    Reference:
    http://sharepointgotchas.wordpress.com/tag/httpmodule/
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Add read more link SharePoint 2013 blog site

    Hi,
    I have blog site in SharePoint 2013. I want to add "Read More" link for all the blog post.
    I found a lot of solution by manipulating through the layouts folder in 15 hive directory.
    But I have no access to the 15 hive directory.
    Is it possible through JavaScript or j query ?
    Please share your suggestion.
    Thank you

    I've used this guide: http://www.learningsharepoint.com/2013/04/07/styling-announcements-with-javascript-using-js-link-in-sharepoint-2013/
    The guide is actually for Announcements but the basic behavior is the same. The code is simple to modify even by a beginner.

  • SharePoint 2013 Blog Site not showing current navigation(Left Navigation)

    I have created a blog site but blog pages are not showing my current navigation, it has got its own left navigation, Can i show left (current) navigation? I am trying to find the page layout being used for blog items but unable to find.

    Hi,
    By design, there is a left navigation in the blog site. Like the following image show.
    Please check whether there is CSS style in site to hide the left navigation.
    If you don’t want to use the default navigation, we can also customize a new one.
    We can use SharePoint designer 2013 to modify it(In /_catalogs/masterpage/seattle.master ).
    Thanks,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Dennis Guo
    TechNet Community Support

  • Standard intranet requirement template for SharePoint 2013 online Site

    Hi, we are doing requirement gathering of one big markets operator company and planning to build one SharePoint
    site using SharePoint 2013 online technology.
    Now, we are looking for one standard document to showcase standard features should be in that portal based
    upon based on customer need, industry trends and practices for standard intranet build.
    Any similar template document will be helpful. Thanks!

    Hi Shailendra,
    Could you please tell me the detailed customer need ? As different customer need will have different industry trends and practices.
    Thanks
    Best Regards
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Limiting Body size post list in SharePoint 2013 blog site

    Hi,
    I want to fix the length of the body content in the post list in blog site in SharePoint 2013.
    And also i want to set the limit to show number of blog in the home page.
    Please help.
    Thank you!

    Open page in SharePoint Designer.
    When the default.aspx page is opened we can see that the web part is actually a XlstListViewWebPart. Taking a look at the XML Definition we can see that there is a field called RowLimit:
    http://www.sharepointanalysthq.com/2011/02/limiting-the-number-of-blog-posts-displayed-in-sharepoint-2010/

  • SharePoint 2013 Blog Site Comments permissions

    Hello,
    Have researched this and all articles I can find so far give identical advice.
    Blog site (subsite of root SiteCollection) is populated by a manager of the company. He wants everyone to see it (default "Visitors") and leave a Comment (default "Members").
    I have customized List permissions for Comments as Visitors, broken inherited perms with parents to be sure the List perms are specific to Visitors of the List, and Visitors -- expectedly -- cannot post a Comment or see other Blog admin links (Add Post,
    Manage Comments etc).
    When adding everyone to the Members group, then customizing under Advanced Settings so they can only edit their OWN content, the users can naturally post Comments. But as Members, they are still allowed to Manage posts, Comments,
    etc. Too many perms.
    Visitor perms = insufficient
    Customized "Members" perms = too much granted.
    Need to constrain perm traits to posting/editing own Comments and nothing more except Read.
    Despite List perm customization, and Advanced Settings customization, this Member perm still grants waayyyyyyy too many perms. I simply cannot permit every user to create posts, manage comments, etc.
    Thank you in advance.

    Hi,
    According to your post, my understanding is that you want to customize the permission in the blog site.
    It is recommend customize your own permission level for this scenario.
    What’s more, to enable users can only edit their own items, we can set the item level permission in the post list advance settings.
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Sharepoint 2013 Blog site landing page

    On a blog site, you are shown categories, archives, then your posts, then blog tools and rss feeds. Is there an easy way to increase the width of the post size. If you increase the size of the web part the posts do not increase.

    Use the developer tools and identify the class and increase the width.

  • Issue with Refiners in Sharepoint 2013

    hi everyone,
    I have created a few new columns in my sp site in post list. i created single line text type column,peoples and groups type column and date type columns. after crawling and assigning a managed property to all the crawled
    properties when i use the refiners in my search page, all the column datas are shown properly except for the peoples and groups column type.. when i give multiple values for single line type column, the refiners correctly picks up each single value as different
    values in the refiners but when i give multiple values for  my peoples and groups column, it does not differentiate the different groups and so it shows the multiple groups as a single group in my refiners.....i gave many crawls and index resets but still
    this problem persists.. what to do?

    Hi FNF
    When you create custom user property and crawl the data then your crawled property will have PropertySetId to "00130329-0000-0130-c000-000000131346" which is default sharpeoint
    But if you see the user property which are shown in refiners they have PropertySetId "ed280121-b677-4e2a-8fbc-0d9e2325b0a2"
    Due to this reason you get all values in single line in refiners.
    the solution is you need to create crawled property using powershell and then map to the managed property.Following is the code to create crawld property.
    New-SPEnterpriseSearchMetadataCrawledProperty -Name $crawledProperty -SearchApplication $searchapp - -IsMappedToContents $true -PropSet ed280121-b677-4e2a-8fbc-0d9e2325b0a2 -IsNameEnum $false -Category SharePoint

  • Issue in Custom Blog site definition based on SharePoint 2010 blog site definition after migrating the sites to SharePoint 2013 and site collection upgrade

    I have created a custom blog site definition using SharePoint 2010 blog site definition with Configuration ID 31 in onet.xml (new value). This was working fine for SharePoint 2010.
    We created new SharePoint 2013 farm and deployed the all Custom solutions in
    14/15 folders. After migrating the sites to SharePoint 2013 using Content DB approach, site created previously using my custom definition are working fine.
    But after running site collection upgrade these sites stop working. When I post a comment then comments not getting listed on post detail page. However comments are getting added to Comments List but
    PostTitle column  of Comment is not getting populated.
    Also, when we create a new site in SharePoint 2013 using my custom blog template then that is also not getting provisioned.  default.aspx and look-up between post and comment list are not working.
    If any one has faced such issue then please share your findings and any solution to fix this.
    Thanks in Advance :)

    Hi ,
    According to your description, my understanding is that the blog based on custom blog site definition didn’t work correctly after migrating custom blog site definition to SharePoint 2013.
    If you customized the Onet.xml file in a previous version's site definition, you should modify some sections in the file to work in the current version, like  <BaseTypes> and  <ListTemplate>  etc. More information, please refer
    to the link below:
    http://msdn.microsoft.com/en-us/library/office/aa543837(v=office.14).aspx
    For that the PostTitle column  of Comment is not getting populated, please try to modify the view, then compare the result.
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Office Web Apps Load Balancing Configuration Issue for SharePoint 2013

    I have load balanced servers dedicated for Office Web Apps with name “md1xxxwfe1” and “md1xxxwfe2” 
    , both this servers are load balanced by CISCO Load balancer. And I have mapped Load Balancer Virutal IP with host name officeapps.jda.corp.local in the DNS records.
     Things are working fine if I add new farm by using New-OfficeWebAppsFarm
     with server name as internalurl in PowerShell console
     as like “  -internalurl http://
    md1xxxwfe1  but when I use –internalurl officeapps.jda.corp.local it is not working at all. I’m not getting what to do at this point.
    I have gone through following blogs but no luck.
    http://blogs.technet.com/b/meamcs/archive/2013/03/27/office-web-apps-2013-multi-servers-nlb-installation-and-deployment-for-sharepoint-2013-step-by-step-guide.aspx
    http://blogs.technet.com/b/office_resource_kit/archive/2012/09/11/introducing-office-web-apps-server.aspx
    http://davidlimsharepoint.blogspot.in/2013/02/installing-and-configuring-office-web.html 
    http://sps2013.blogspot.in/2013/09/office-web-apps-with-sharepoint-2013.html
    The output of the wfe1 server is attached with this. When I open http:// /hosting/discovery in wfe1 I’m getting following result (attached
    screenshot) but it should show hostname rather than server name.
    Please help me
    Thanks, Ram Ch

    Hi  Ram ,
    For  troubleshooting your issue, please take steps as below:
    Just about any load balancing solution will work, including a server that runs the Web Server (IIS) role running Application Request Routing (ARR):Install
    Application Request Routing
    Install the certificate on the load balancer as described under Securing Office Web Apps Server communications by using
    HTTPS.
    Make sure you have configured the cluster correctly for full internet name:
    Reference:
    http://technet.microsoft.com/en-us/library/jj219435.aspx#loadbalancer
    Thanks,
    Eric
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support,
    contact [email protected]
    Eric Tao
    TechNet Community Support

Maybe you are looking for

  • I'm in trouble with a cin

    HI, i'm trying to create an .lsb file for my cin using visual c++. i have followed all the instruction step by step....but it doesn't came out.what can i do? thanks a lot

  • PSE wish list - Auto stacking RAW + JPGs

    I'm using PSE V10 and have a 'wish list' item for suggested improvements to the program. A feature that would be extremely valuable to many users would be the ability to auto stack photos where there are the RAW + JPG images present in the Catalog. T

  • Reg error:EUE9D5XW

    hi, i have an issue with date filter.i have created a "to" and a "from" date filter in the report from one column.i am using calendar for filters. when i query by giving values in the filter it gives me results.but when i delete those values in the f

  • Is the concept of "profiles" still there, in JavaFX 1.2?

    Hi all, I can't find the concept of profiles in JavaFX 1.2, like common profile, desktop profile etc, on the javafx.com website. Has this idea been deprecated? Edited by: Carl-David on Jun 9, 2009 1:41 AM

  • Applications won't open, among other things

    My MacBook is falling apart...first the wireless stops working (similarly to others), then the backlight goes out, and now my applications have gone haywire... First, I tried to install the iTunes 9.0.2 update and the install failed and corrupted my