Showing posts with label CEWP. Show all posts
Showing posts with label CEWP. Show all posts

Jun 19, 2014

Error : Cannot retrieve properties at this time and Cannot save your changes in content editor web part or html form webpart


Hello,

In Content Editor Web part or HTML Form Web part , when we are trying to edit the content in Source Editor sometimes we will get this error .

The reason for this is while copying the content from word/some other tools, the format also carried along with the copied text. This format cannot be understand by SharePoint. This is the reason it throws the error. Even though your text appeared on the web part sometimes throws the error while saving the web part.


While saving the Source Editor throws “Cannot retrieve properties at this time ” like this




and while saving the web part it throws this error “Cannot save your changes”.




Solution :

  • This is the issue with the browser version you are using, I got this error with IE10. I tried by editing the same with IE8, It worked for me. ( as per my observation this is not working with chrome and IE versions above IE8. )
  • Recycle the application pool – This is based on the information we get on the logs. But this is not working all the times.

Thanks,
Purna

Feb 28, 2011

Twitter in SharePoint CEWP

Hi,

To get the twitter tweets/feeds in to your sharepoint do this simple work. Open your site and add a CEWP (Content Editor Webpart) to the page. And add the following java script in to that




script src="http://widgets.twimg.com/j/2/widget.js">< /script ( Here I have missed open brace'<' and closed brace '>'  to show script to you )

And write the below in the script tags

new TWTR.Widget({
version: 2,
type: 'profile',
rpp: 5,
interval: 6000,
width: 200,
height: 500,
theme: {
shell: {
background: '#F45C00',
color: '#ffffff'
},
tweets: {
background: '#000000',
color: '#ffffff',
links: '#4aed05'
}
},
features: {
scrollbar: true,
loop: false,
live: true,
hashtags: true,
timestamp: true,
avatars: true,
behavior: 'all'
}
}).render().setUser('SharePoint2010').start();


The source of the java script file taken from http://widgets.twimg.com/j/2/widget.js.

Note : Here the type of the display is Profile. And also u can show the list . HereI have set the value of the setUser property is Sharepoint2010(http://twitter.com/SharePoint2010) .Instead you can display your own feeds/tweets by giving your twitter account over there(ex:.render().setUser('purnamadugula').start();).Also you can show  the list and customize the user interface...

Here is the more information on this:

Source Links :

http://www.readwriteweb.com/archives/10_twitter_list_widgets_you_can_grab_embed_right_n.php
http://bombshelter.org/TweetCode.txt