Friday, May 18, 2012

Sitecore Fetch Squad

Automated crawler fetching websites and blogs from Sitecore content

Archive for the ‘Featured’ Category

jQuery conflicts with PageEditor

Posted by admin On January - 21 - 2009
There is such problem, indeed. It is caused by the conflict with Prototype.js that most of Page Editor, including designer and debugger uses. It can be simply worked around by overriding the $-function by calling "jQuery.noConflict()". <script type="text/javascript" src="/js/jquery-1.2.6.js"></script>

 

<script type="text/javascript">

 

var $j = jQuery.noConflict();

Consulting and Supporting Sitecore Developer Community

Maximum number of Sitecore query items

Posted by admin On January - 21 - 2009
Last week I had some problems with an Sitecore Query. It didn’t show more than an fixed number of items. After some hard thinking I rembered that there is a web.config key called Query.MaxItem which, you might guessed it, controls the maximum number of results of an Sitecore Query.

Mark van Aalst

Sitecore Seminar – February 6, 2008

Posted by admin On December - 29 - 2008

Setting the value of a Lookup field

Posted by admin On December - 29 - 2008
How to set the value of a Lookup field programmatically.

Sitecore Code Snippets

Clearing the Security field of an item

Posted by admin On December - 29 - 2008

Updating Image File on a Media Library Item Programmatically

Posted by admin On December - 29 - 2008
Our code needs to update image file on a Media Library item programmatically.

Sitecore Code Snippets

Define XSLT rendering dynamically

Posted by admin On December - 29 - 2008
Define which XSLT rendering should be used on the page dynamically by using the XslTransform class.

Sitecore Code Snippets

Implementing a Lucene.NET search

Posted by admin On December - 29 - 2008
The following example implements a Lucene.NET search routine, ready to run.

Sitecore Code Snippets