
<rss version="2.0">
    <channel>
        <title>Kentico CMS for ASP.NET - DevNet - FAQs</title>
        <link><![CDATA[http://devnet.kentico.com/]]></link>
        <description>Kentico CMS for ASP.NET - DevNet - FAQs</description>  
        <item>
     <guid isPermaLink="true"><![CDATA[http://devnet.kentico.com/FAQs/General/Is-it-possible-to-refresh-a-Database-Views-without.aspx]]></guid>
     <title><![CDATA[Is it possible to refresh Database Views without SQL Management Studio installed?]]></title>
     <description><![CDATA[Of course it is! You can refresh views easily via Kentico UI:<br />
CMS Site Manager -&gt; Development -&gt; System Tables -&gt; Views Tab -&gt; Refresh All Views button]]></description>
     <pubDate>Thu, 04 Apr 2013 13:54:00 GMT</pubDate>
     <link><![CDATA[http://devnet.kentico.com/FAQs/General/Is-it-possible-to-refresh-a-Database-Views-without.aspx]]></link>     
</item><item>
     <guid isPermaLink="true"><![CDATA[http://devnet.kentico.com/FAQs/API-and-Internals/How-to-solve-the-Cannot-load-default-column-mappin.aspx]]></guid>
     <title><![CDATA[How to solve the "Cannot load default column mappings. Default user not found“ error message when using Import Toolkit]]></title>
     <description><![CDATA[Navigate to the Site Manager -&gt; Settings -&gt; System section and look for the &quot;Default user ID&ldquo; setting, usually this is set to number 53 (global administator).&nbsp; The corresponding user is used when inserting data via Import toolkit, you need to ensure this property is filled by the user ID of the user who exist in the target DB (where you import data to). <a href="http://devnet.kentico.com/docs/devguide/import_toolkit_xml_file.htm">Import Toolkit</a>]]></description>
     <pubDate>Thu, 04 Apr 2013 13:30:02 GMT</pubDate>
     <link><![CDATA[http://devnet.kentico.com/FAQs/API-and-Internals/How-to-solve-the-Cannot-load-default-column-mappin.aspx]]></link>     
</item><item>
     <guid isPermaLink="true"><![CDATA[http://devnet.kentico.com/FAQs/General/How-to-avoid-conflicts-between-default-and-linked.aspx]]></guid>
     <title><![CDATA[How to avoid conflicts between default and linked jQuery]]></title>
     <description><![CDATA[If you want to use another version of the jQuery library other than the default library used by the design mode in Kentico CMS, you would have to link it only on the live site, where the default jQuery library is not linked. You can achieve this by a simple context macro:<br />
Visible property of a web part: <span style="font-family:courier new,courier,monospace;">{ % PortalContext.ViewMode == &quot;LiveSite&quot; % }</span><br />
Any text (e.g. head section of a master page):<br />
<span style="font-family:courier new,courier,monospace;">{ %&nbsp; if (PortalContext.ViewMode==&quot;LiveSite&quot;) { return &quot;&lt;script src=&#39;jQuery.js&#39; type=&#39;text/javascript&#39;&gt;&quot;; }&nbsp; % }</span><br />
]]></description>
     <pubDate>Fri, 29 Mar 2013 20:10:37 GMT</pubDate>
     <link><![CDATA[http://devnet.kentico.com/FAQs/General/How-to-avoid-conflicts-between-default-and-linked.aspx]]></link>     
</item><item>
     <guid isPermaLink="true"><![CDATA[http://devnet.kentico.com/FAQs/API-and-Internals/How-to-render-extension-less-URLs-for-documents-in.aspx]]></guid>
     <title><![CDATA[How to render extension-less URLs for documents in navigation web parts]]></title>
     <description><![CDATA[If you setup your site to use extension-less URLs as per our <a href="http://devnet.kentico.com/docs/7_0/devguide/configuration_of_extensionless_urls.htm">documentation</a>, you may still encounter the problem with navigation web parts (e.g. CMSListMenu) still rendering document links with the .aspx extension. To force these web parts to render extension-less links, you need to enable the Redirect documents to main extension setting in Site Manager -&gt; Settings -&gt; URLs and SEO. This setting is disabled by default.<br />
<br />
<div style="text-align: right;">
	-<em>rm</em>-</div>
]]></description>
     <pubDate>Fri, 01 Mar 2013 18:12:50 GMT</pubDate>
     <link><![CDATA[http://devnet.kentico.com/FAQs/API-and-Internals/How-to-render-extension-less-URLs-for-documents-in.aspx]]></link>     
</item><item>
     <guid isPermaLink="true"><![CDATA[http://devnet.kentico.com/FAQs/Content-Management/How-to-access-attachments-in-the-Document-attachme.aspx]]></guid>
     <title><![CDATA[How to access attachments in the Document attachments field using a transformation]]></title>
     <description><![CDATA[In order to display attachments in a transformation from the Document attachments field of a document, you can take advantage of the Text/XML transformation type and the following macro:<br />
<div class="WebPartError">
	<span class="WebPartErrorTitle">Failed to load widget object.</span> <br /><span title="Message: Object reference not set to an instance of an object. 
Stack Trace: 
   at KenticoCom_WebParts_SyntaxHighlighter.SetupControl()
   at CMSModules_Widgets_InlineControl_InlineWidget.Page_Load(Object sender, EventArgs e)
" class="WebPartErrorMessage">Object reference not set to an instance of an object.</span>
</div><br />
<div style="text-align: right;">
	-<em>jh</em>-</div>
]]></description>
     <pubDate>Fri, 01 Mar 2013 18:08:21 GMT</pubDate>
     <link><![CDATA[http://devnet.kentico.com/FAQs/Content-Management/How-to-access-attachments-in-the-Document-attachme.aspx]]></link>     
</item><item>
     <guid isPermaLink="true"><![CDATA[http://devnet.kentico.com/FAQs/API-and-Internals/How-to-enable-classic-modal-dialogs-in-Kentico-CMS.aspx]]></guid>
     <title><![CDATA[How to enable classic modal dialogs in Kentico CMS?]]></title>
     <description><![CDATA[In version 7.x of Kentico CMS, modal dialogs are full-screen based and it is not possible to move them as standard modal windows.&nbsp; A typical example of this default behavior is the web part properties dialog. You can switch this behavior back to standard model by adding the following key in &lt;appSettings&gt; section in the web.config file:<br />
<span style="font-family:courier new,courier,monospace;">&lt;add key=&quot;CMSClassicDialogs&quot; value=&quot;true&quot; /&gt;</span>]]></description>
     <pubDate>Sun, 24 Feb 2013 13:52:02 GMT</pubDate>
     <link><![CDATA[http://devnet.kentico.com/FAQs/API-and-Internals/How-to-enable-classic-modal-dialogs-in-Kentico-CMS.aspx]]></link>     
</item><item>
     <guid isPermaLink="true"><![CDATA[http://devnet.kentico.com/FAQs/API-and-Internals/How-to-create-document-crawler-smart-search-index.aspx]]></guid>
     <title><![CDATA[How to create document crawler smart search index using the API?]]></title>
     <description><![CDATA[Our <a href="http://devnet.kentico.com/docs/7_0/devguide/index.html?smart_search_api_examples_managing_search_indexes.htm">Developer&rsquo;s guide</a> describes how to create smart search indexes using the API.&nbsp; With the exception of the Document crawler index type, you can set a value of the<strong> newIndex.IndexType</strong> property from <strong>PredefinedObjectType</strong> enumerator.<br />
<br />
For example: <strong>newIndex.IndexType</strong> = <strong>PredefinedObjectType.DOCUMENT</strong>;<br />
<br />
However, the document crawler index type specifically needs to be set like this:<br />
newIndex.IndexType = SearchHelper.DOCUMENTS_CRAWLER_INDEX;<br />
<br />
So, a complete API example would look like:<br />
<div class="WebPartError">
	<span class="WebPartErrorTitle">Failed to load widget object.</span> <br /><span title="Message: Object reference not set to an instance of an object. 
Stack Trace: 
   at KenticoCom_WebParts_SyntaxHighlighter.SetupControl()
   at CMSModules_Widgets_InlineControl_InlineWidget.Page_Load(Object sender, EventArgs e)
" class="WebPartErrorMessage">Object reference not set to an instance of an object.</span>
</div>]]></description>
     <pubDate>Sun, 24 Feb 2013 13:48:50 GMT</pubDate>
     <link><![CDATA[http://devnet.kentico.com/FAQs/API-and-Internals/How-to-create-document-crawler-smart-search-index.aspx]]></link>     
</item><item>
     <guid isPermaLink="true"><![CDATA[http://devnet.kentico.com/FAQs/E-commerce/How-to-fix-an-unresolved-macro-error-in-E-Commerce.aspx]]></guid>
     <title><![CDATA[How to fix an unresolved macro error in E-Commerce tab in CMS Desk?]]></title>
     <description><![CDATA[When you receive an error in the general dashboard page in CMS Desk / E-Commerce tab with an unresolved macro like:<br />
<div class="WebPartError">
	<span class="WebPartErrorTitle">Failed to load widget object.</span> <br /><span title="Message: Object reference not set to an instance of an object. 
Stack Trace: 
   at KenticoCom_WebParts_SyntaxHighlighter.SetupControl()
   at CMSModules_Widgets_InlineControl_InlineWidget.Page_Load(Object sender, EventArgs e)
" class="WebPartErrorMessage">Object reference not set to an instance of an object.</span>
</div><br />
the problem is usually in an outdated macro signature. This can be caused by a change in the CMSConnectionString. If you have modified the connection string, you will need to update macro signatures in Site manager -&gt; Administration -&gt; System -&gt; Macros -&gt; Update macro signatures.&nbsp; A comprehensive description of the situation can be found there as well.<br />
]]></description>
     <pubDate>Fri, 08 Feb 2013 19:35:21 GMT</pubDate>
     <link><![CDATA[http://devnet.kentico.com/FAQs/E-commerce/How-to-fix-an-unresolved-macro-error-in-E-Commerce.aspx]]></link>     
</item><item>
     <guid isPermaLink="true"><![CDATA[http://devnet.kentico.com/FAQs/Windows-Azure/How-to-deal-with-Error-loading-the-web-part-XY”-er.aspx]]></guid>
     <title><![CDATA[How to deal with “Error loading the web part XY” error message in Azure application?]]></title>
     <description><![CDATA[You may receive the following type of error message in your Azure web application, which is most likely related to some custom web part:<br />
<span style="font-family:courier new,courier,monospace;">[Error loading the WebPart &#39;XY&#39; of type &#39;YZ&#39;]<br />
The file &#39;/CMSWebParts/&lt;category&gt;/&lt;XY&gt;.ascx.cs&#39; does not exist.</span><br />
<br />
The most likely reason for this error is if the web part files were not included into the project before deployment to the Azure environment.&nbsp; The compilation produces a single CMSApp.dll file which is used instead of the physical controls.&nbsp; If the web part files are not included in the project before compilation starts, they are missing in the CMSApp.dll file and cannot be loaded on the site.<br />
<div style="text-align: right;">
	-<em>rm</em>-</div>
]]></description>
     <pubDate>Mon, 04 Feb 2013 20:08:39 GMT</pubDate>
     <link><![CDATA[http://devnet.kentico.com/FAQs/Windows-Azure/How-to-deal-with-Error-loading-the-web-part-XY”-er.aspx]]></link>     
</item><item>
     <guid isPermaLink="true"><![CDATA[http://devnet.kentico.com/FAQs/Security-and-membership/How-do-I-set-SSL-for-administration-interface.aspx]]></guid>
     <title><![CDATA[How do I set SSL for administration interface?]]></title>
     <description><![CDATA[In Site Manager -&gt; Settings -&gt; &lt;global settings&gt; -&gt; Security &amp; Membership -&gt; Administration section there is setting named &ldquo;Use SSL for administration interface&rdquo;.&nbsp; Please note: Before setting this key to true, please make sure that the SSL certificate is correctly installed in your IIS. If not, you won&rsquo;t be able to login to the UI, and you will need to change this setting back to false directly in the database e.g. using this query:<br />
<br />
<span style="font-family:courier new,courier,monospace;">UPDATE CMS_SettingsKey<br />
SET KeyValue = &#39;false&#39;<br />
WHERE KeyName = &#39;CMSUseSSLForAdministrationInterface&#39;</span>]]></description>
     <pubDate>Tue, 22 Jan 2013 13:25:45 GMT</pubDate>
     <link><![CDATA[http://devnet.kentico.com/FAQs/Security-and-membership/How-do-I-set-SSL-for-administration-interface.aspx]]></link>     
</item><item>
     <guid isPermaLink="true"><![CDATA[http://devnet.kentico.com/FAQs/Content-Management/What-CKEditor-config-settings-can-be-set.aspx]]></guid>
     <title><![CDATA[What CKEditor config settings can be set?]]></title>
     <description><![CDATA[Want to modify the default CK Editor, but not sure which attributes can be set?&nbsp; You can find a full list of CKEDITOR configuration settings here: <a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html">docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html</a><br />
&nbsp;<br />
These changes can be applied to the ~\CMSAdminControls\CKeditor\config.js file, after which you will need to restart the application, clear the application cache, and clear the browser cache depending on which browser you are using.&nbsp; You can restart the application and clear the application cache from Site Manager -&gt; Administration -&gt; System.]]></description>
     <pubDate>Fri, 18 Jan 2013 17:57:45 GMT</pubDate>
     <link><![CDATA[http://devnet.kentico.com/FAQs/Content-Management/What-CKEditor-config-settings-can-be-set.aspx]]></link>     
</item><item>
     <guid isPermaLink="true"><![CDATA[http://devnet.kentico.com/FAQs/Web-parts-Controls/How-to-change-the-input-type-for-the-chat-web-part.aspx]]></guid>
     <title><![CDATA[How to change the input type for the chat web parts?]]></title>
     <description><![CDATA[By default, the input type is defined as a button:<br />
<span style="font-family:courier new,courier,monospace;">&lt;input type=&quot;button&quot; value=&quot;{$chat.supportrequest.openchat$}&quot; /&gt;</span><br />
<br />
For example, if you wanted to change this value to an image, you also need to define the onclick value parameter:<br />
<span style="font-family:courier new,courier,monospace;">&lt;input type=&quot;image&quot; onclick=&quot;return false;&quot; value=&quot;{$chat.supportrequest.openchat$}&quot; /&gt;</span><br />
<br />
Otherwise, you get the error message:<br />
The server method GetSupportEngineersOnlineCount failed.]]></description>
     <pubDate>Wed, 09 Jan 2013 15:28:16 GMT</pubDate>
     <link><![CDATA[http://devnet.kentico.com/FAQs/Web-parts-Controls/How-to-change-the-input-type-for-the-chat-web-part.aspx]]></link>     
</item><item>
     <guid isPermaLink="true"><![CDATA[http://devnet.kentico.com/FAQs/Marketplace/What-does-the-Tested-by-Kentico-stamp-imply.aspx]]></guid>
     <title><![CDATA[What does the “Tested by Kentico” stamp imply?]]></title>
     <description><![CDATA[<img alt="marketplace-item-tested.png" src="~/getattachment/703609c1-3afd-4e11-b96b-31a2ec508679/marketplace-item-tested.png" style="width: 100px; height: 38px;" title="marketplace-item-tested.png" /><br />
Items bearing the &ldquo;Tested by Kentico&rdquo; stamp are those free items which we have tested (in the listed Kentico CMS versions) for correct import process and basic functionality and find to be error-free.<br />
We do not test paid items and they are therefore not eligible to receive the stamp.]]></description>
     <pubDate>Wed, 09 Jan 2013 04:03:08 GMT</pubDate>
     <link><![CDATA[http://devnet.kentico.com/FAQs/Marketplace/What-does-the-Tested-by-Kentico-stamp-imply.aspx]]></link>     
</item><item>
     <guid isPermaLink="true"><![CDATA[http://devnet.kentico.com/FAQs/Marketplace/Do-you-provide-support-for-items-in-the-marketplac.aspx]]></guid>
     <title><![CDATA[Do you provide support for items in the marketplace?]]></title>
     <description><![CDATA[We only provide support for items published by our own developers, in which case you should contact our support department. In all other cases, please direct your questions to the author of the particular item. Keep in mind though, that they may or may not offer support for their creations.]]></description>
     <pubDate>Wed, 09 Jan 2013 04:01:39 GMT</pubDate>
     <link><![CDATA[http://devnet.kentico.com/FAQs/Marketplace/Do-you-provide-support-for-items-in-the-marketplac.aspx]]></link>     
</item><item>
     <guid isPermaLink="true"><![CDATA[http://devnet.kentico.com/FAQs/Marketplace/How-do-I-install-an-item.aspx]]></guid>
     <title><![CDATA[How do I install an item?]]></title>
     <description><![CDATA[First download the chosen package, either directly from the marketplace website or from the author&rsquo;s pages by clicking the Download button.<br />
Then check the downloaded package:
<ul>
	<li>
		If it is an .exe file, execute it and follow the instructions provided in the installer.</li>
	<li>
		If it is a .zip package containing only folders and .export files, then import the whole .zip package into Kentico CMS using the <strong>Site Manager -&gt; Sites -&gt; Import site or objects</strong> button.</li>
	<li>
		If it is a .zip package containing another .zip package (and other files, such as instructions, documentation, libraries, etc.), then unpack the main package. After that, import the sub-package into Kentico CMS using the <strong>Site Manager -&gt; Sites -&gt; Import site or objects</strong> button.</li>
</ul>
]]></description>
     <pubDate>Wed, 09 Jan 2013 03:59:02 GMT</pubDate>
     <link><![CDATA[http://devnet.kentico.com/FAQs/Marketplace/How-do-I-install-an-item.aspx]]></link>     
</item><item>
     <guid isPermaLink="true"><![CDATA[http://devnet.kentico.com/FAQs/Marketplace/Am-I-rewarded-for-submitting-to-the-Marketplace.aspx]]></guid>
     <title><![CDATA[Am I rewarded for submitting to the Marketplace?]]></title>
     <description><![CDATA[Yes. Kentico CMS partners receive 20 Partner program points for every published item, and (if applicable) an additional 10 points for updating their marketplace items to be compatible with the latest Kentico CMS version.]]></description>
     <pubDate>Wed, 09 Jan 2013 03:56:17 GMT</pubDate>
     <link><![CDATA[http://devnet.kentico.com/FAQs/Marketplace/Am-I-rewarded-for-submitting-to-the-Marketplace.aspx]]></link>     
</item><item>
     <guid isPermaLink="true"><![CDATA[http://devnet.kentico.com/FAQs/Marketplace/Do-you-test-the-submitted-items.aspx]]></guid>
     <title><![CDATA[Do you test the submitted items?]]></title>
     <description><![CDATA[We only test the import process and basic functionality in the listed Kentico CMS versions of free items. If we encounter any major problems, we inform you by email. Free items which we find to be error-free are awarded the &ldquo;Tested by Kentico&rdquo; stamp.<br />
We do not test paid items.]]></description>
     <pubDate>Wed, 09 Jan 2013 03:55:33 GMT</pubDate>
     <link><![CDATA[http://devnet.kentico.com/FAQs/Marketplace/Do-you-test-the-submitted-items.aspx]]></link>     
</item><item>
     <guid isPermaLink="true"><![CDATA[http://devnet.kentico.com/FAQs/Marketplace/How-do-I-submit-a-new-item.aspx]]></guid>
     <title><![CDATA[How do I submit a new item?]]></title>
     <description><![CDATA[Fill out the following form: <a href="http://devnet.kentico.com/Marketplace/Submit-new-item.aspx">devnet.kentico.com/Marketplace/Submit-new-item.aspx</a>.<br />
If you are offering your submitted item for free, you can either upload the whole installation package onto our marketplace server or supply a link to your website.<br />
If you are submitting a paid item, please only supply a link to your website where you provide the download and payment information.]]></description>
     <pubDate>Wed, 09 Jan 2013 03:54:29 GMT</pubDate>
     <link><![CDATA[http://devnet.kentico.com/FAQs/Marketplace/How-do-I-submit-a-new-item.aspx]]></link>     
</item><item>
     <guid isPermaLink="true"><![CDATA[http://devnet.kentico.com/FAQs/Web-parts-Controls/How-to-fix-Cannot-write-into-file-because-exists-i.aspx]]></guid>
     <title><![CDATA[How to fix "Cannot write into file because exists in application filesystem" error when using web application.]]></title>
     <description><![CDATA[Smart search indexes are represented by physical .log files and can be found in the ~/App_Data/CMSModules/SmartSearch/ folder, which is included in the web application project. You can try to explicitly exclude these log files from the project, by using the &ldquo;<strong>Exclude From Project</strong>&rdquo; option in the context menu of the Solution explorer in Visual Studio.<br />
<br />
See Also: <a href="http://devnet.kentico.com/docs/devguide/smart_search_overview.htm">Smart search</a>]]></description>
     <pubDate>Sat, 05 Jan 2013 13:12:20 GMT</pubDate>
     <link><![CDATA[http://devnet.kentico.com/FAQs/Web-parts-Controls/How-to-fix-Cannot-write-into-file-because-exists-i.aspx]]></link>     
</item><item>
     <guid isPermaLink="true"><![CDATA[http://devnet.kentico.com/FAQs/Web-parts-Controls/How-to-avoid-possible-issue-with-CDATA-element-in.aspx]]></guid>
     <title><![CDATA[How to avoid possible issue with CDATA element in XLIFF file.]]></title>
     <description><![CDATA[Under some special circumstances, you may face an issue with your translation tool or service, where it cannot process the Kentico CMS XLIFF files properly, due to the presence of the <a href="http://docs.oasis-open.org/xliff/v1.2/xliff-profile-html/xliff-profile-html-1.2-cd02.html#General_CDATA">CDATA elements</a>. In this case, you can fix this problem using the following key in your appSettings in the web.config file:<br />
<br />
<strong>&lt;add key=&ldquo;CMSTranslationServicesUseCDATAForTransUnit&ldquo; value=false /&gt;</strong><br />
<br />
Please note, this is supported since hotfix 7.0.12, so you may need to apply <a href="http://devnet.kentico.com/Bugtracker/Hotfixes.aspx">the latest hotfix</a> first.<br />
<br />
<strong>See also: </strong><a href="http://devnet.kentico.com/docs/devguide/index.html?translation_services_overview.htm">Translation services</a>]]></description>
     <pubDate>Sat, 05 Jan 2013 13:08:41 GMT</pubDate>
     <link><![CDATA[http://devnet.kentico.com/FAQs/Web-parts-Controls/How-to-avoid-possible-issue-with-CDATA-element-in.aspx]]></link>     
</item><item>
     <guid isPermaLink="true"><![CDATA[http://devnet.kentico.com/FAQs/Web-parts-Controls/How-to-change-the-number-of-items-rendered-by-Caro.aspx]]></guid>
     <title><![CDATA[How to change the number of items rendered by Carousel web parts.]]></title>
     <description><![CDATA[You can easily change the number of items you want to display in any Carousel web part (e.g. the Repeater with Carousel or the Attachments Carousel web part) by changing or adding the visible parameter to the Initialization script property as below:<br />
<div class="WebPartError">
	<span class="WebPartErrorTitle">Failed to load widget object.</span> <br /><span title="Message: Object reference not set to an instance of an object. 
Stack Trace: 
   at KenticoCom_WebParts_SyntaxHighlighter.SetupControl()
   at CMSModules_Widgets_InlineControl_InlineWidget.Page_Load(Object sender, EventArgs e)
" class="WebPartErrorMessage">Object reference not set to an instance of an object.</span>
</div>]]></description>
     <pubDate>Sat, 05 Jan 2013 12:58:47 GMT</pubDate>
     <link><![CDATA[http://devnet.kentico.com/FAQs/Web-parts-Controls/How-to-change-the-number-of-items-rendered-by-Caro.aspx]]></link>     
</item><item>
     <guid isPermaLink="true"><![CDATA[http://devnet.kentico.com/FAQs/Web-parts-Controls/How-to-use-the-mobile-redirection-web-part-from-co.aspx]]></guid>
     <title><![CDATA[How to use the mobile redirection web part from code?]]></title>
     <description><![CDATA[To make the <em>Mobile redirection</em> web part work from code, you need to at least specify the following parameters:<br />
<br />
<div class="WebPartError">
	<span class="WebPartErrorTitle">Failed to load widget object.</span> <br /><span title="Message: Object reference not set to an instance of an object. 
Stack Trace: 
   at KenticoCom_WebParts_SyntaxHighlighter.SetupControl()
   at CMSModules_Widgets_InlineControl_InlineWidget.Page_Load(Object sender, EventArgs e)
" class="WebPartErrorMessage">Object reference not set to an instance of an object.</span>
</div>
<div style="text-align: right;">
	-<em>jh</em>-</div>
]]></description>
     <pubDate>Fri, 30 Nov 2012 13:02:11 GMT</pubDate>
     <link><![CDATA[http://devnet.kentico.com/FAQs/Web-parts-Controls/How-to-use-the-mobile-redirection-web-part-from-co.aspx]]></link>     
</item><item>
     <guid isPermaLink="true"><![CDATA[http://devnet.kentico.com/FAQs/Web-parts-Controls/How-to-display-child-documents-if-they-exist-and-d.aspx]]></guid>
     <title><![CDATA[How to display child documents if they exist and display siblings if they don’t.]]></title>
     <description><![CDATA[You can insert the following macro to the Path property of your source web part (e.g. Repeater web part). &nbsp;This macro can be used when you want to display either the child documents of the current document if they exist, or else, display the sibling documents of the current document when no child documents exist for the current document.<br />
<br />
<div>
	{%</div>
<div>
	if (CurrentDocument.Children.Count &gt; 0) {</div>
<div>
	return &quot;./%&quot;;</div>
<div>
	}</div>
<div>
	else {</div>
<div>
	return &quot;../%&quot;;</div>
<div>
	}</div>
<div>
	#% }<br />
	<br />
	When copying this macro example, please remove the space between the closing percent and bracket characters.</div>
<br />
<div style="text-align: right;">
	-<em>jh</em>-</div>
]]></description>
     <pubDate>Fri, 30 Nov 2012 12:26:43 GMT</pubDate>
     <link><![CDATA[http://devnet.kentico.com/FAQs/Web-parts-Controls/How-to-display-child-documents-if-they-exist-and-d.aspx]]></link>     
</item><item>
     <guid isPermaLink="true"><![CDATA[http://devnet.kentico.com/FAQs/General/What-should-I-do-if-images-aren’t-displayed-on-a-s.aspx]]></guid>
     <title><![CDATA[What should I do if images aren’t displayed on a site running with extensionless URLs]]></title>
     <description><![CDATA[If your images aren&rsquo;t displayed correctly with the default extensions (e.g. .jpg, .gif, .png, etc.), but everything is working fine when you remove the extension or change it to .aspx,&nbsp;add the following code to your web.config file under the &lt;system.webSerer&gt; section:<br />
<br />
<div>
 <em><div class="WebPartError">
	<span class="WebPartErrorTitle">Failed to load widget object.</span> <br /><span title="Message: Object reference not set to an instance of an object. 
Stack Trace: 
   at KenticoCom_WebParts_SyntaxHighlighter.SetupControl()
   at CMSModules_Widgets_InlineControl_InlineWidget.Page_Load(Object sender, EventArgs e)
" class="WebPartErrorMessage">Object reference not set to an instance of an object.</span>
</div></em><br />
 &nbsp;</div>
<div style="text-align: right;">
 <em>-md-</em></div>
<br />
<br />
]]></description>
     <pubDate>Wed, 28 Nov 2012 03:47:24 GMT</pubDate>
     <link><![CDATA[http://devnet.kentico.com/FAQs/General/What-should-I-do-if-images-aren’t-displayed-on-a-s.aspx]]></link>     
</item><item>
     <guid isPermaLink="true"><![CDATA[http://devnet.kentico.com/FAQs/BizForms/How-do-you-get-an-upload-field-value-after-an-on-l.aspx]]></guid>
     <title><![CDATA[How do you get an upload field value after an on-line form is submitted in version 7.0?]]></title>
     <description><![CDATA[The API has slightly changed in version 7.0. How to get on-line form data is described in in the article:&nbsp; <a href="http://devnet.kentico.com/docs/7_0/devguide/modifying_the_code_of_standard_web_parts.htm" target="_blank">Modifying the code of standard web parts</a>.<br />
<br />
The direct uploader field and its value is a little different and you can use the below API to work with this field.<br />
<br />
<div class="WebPartError">
	<span class="WebPartErrorTitle">Failed to load widget object.</span> <br /><span title="Message: Object reference not set to an instance of an object. 
Stack Trace: 
   at KenticoCom_WebParts_SyntaxHighlighter.SetupControl()
   at CMSModules_Widgets_InlineControl_InlineWidget.Page_Load(Object sender, EventArgs e)
" class="WebPartErrorMessage">Object reference not set to an instance of an object.</span>
</div><br />
<br />
<div style="text-align: right;">
	<em>-it-</em></div>
]]></description>
     <pubDate>Tue, 20 Nov 2012 01:15:07 GMT</pubDate>
     <link><![CDATA[http://devnet.kentico.com/FAQs/BizForms/How-do-you-get-an-upload-field-value-after-an-on-l.aspx]]></link>     
</item><item>
     <guid isPermaLink="true"><![CDATA[http://devnet.kentico.com/FAQs/Web-parts-Controls/How-do-you-validate-a-checkbox-field.aspx]]></guid>
     <title><![CDATA[How do you validate a checkbox field?]]></title>
     <description><![CDATA[If you want to send your form after your visitor checks a checkbox, you can take advantage of the validation functionality for Text fields, so please define your field as the Text attribute type (instead of a boolean) and then follow the settings below:<br />
<br />
<em>Form control:</em> Multiple choice<br />
<em>Repeat direction: </em>Vertical / Options (one value;name pair on each line - example: 1;Blue)<br />
<em>Data source:</em> yes;I agree<br />
<em>Regular expression: </em>yes<br />
<em>Error message: </em>You have to confirm this form<br />
<div style="text-align: right;">
 <em>-jh-</em></div>
]]></description>
     <pubDate>Wed, 07 Nov 2012 04:44:44 GMT</pubDate>
     <link><![CDATA[http://devnet.kentico.com/FAQs/Web-parts-Controls/How-do-you-validate-a-checkbox-field.aspx]]></link>     
</item><item>
     <guid isPermaLink="true"><![CDATA[http://devnet.kentico.com/FAQs/API-and-Internals/How-do-you-render-properties-of-a-document-from-th.aspx]]></guid>
     <title><![CDATA[How do you render properties of a document from the first level of the current path?]]></title>
     <description><![CDATA[If you want to render properties of a main parent of a document dynamically according to the current path, you can&rsquo;t use standard path expressions. However there is a simple workaround for that:<br />
<br />
<div class="WebPartError">
	<span class="WebPartErrorTitle">Failed to load widget object.</span> <br /><span title="Message: Object reference not set to an instance of an object. 
Stack Trace: 
   at KenticoCom_WebParts_SyntaxHighlighter.SetupControl()
   at CMSModules_Widgets_InlineControl_InlineWidget.Page_Load(Object sender, EventArgs e)
" class="WebPartErrorMessage">Object reference not set to an instance of an object.</span>
</div><br />
<div>
 <em>Please remove the space in this expression: #% }&nbsp;at the end of sample code.</em></div>
<div style="text-align: right;">
 <br />
 <em>-jh-</em></div>
]]></description>
     <pubDate>Thu, 01 Nov 2012 08:29:40 GMT</pubDate>
     <link><![CDATA[http://devnet.kentico.com/FAQs/API-and-Internals/How-do-you-render-properties-of-a-document-from-th.aspx]]></link>     
</item><item>
     <guid isPermaLink="true"><![CDATA[http://devnet.kentico.com/FAQs/Web-parts-Controls/Why-is-my-standard-control-data-empty-after-postba.aspx]]></guid>
     <title><![CDATA[Why is my standard ASP.NET control data empty after postback on the ASPX  template?]]></title>
     <description><![CDATA[If you use or&nbsp;have upgraded your site to version 6.0 and you are using standard ASP.NET controls&nbsp;like, for example, <span style="font-family: courier new,courier,monospace;">asp:repeater</span>, you may have an issue after postback; your data may be lost. There are to possible solutions:<br />
<br />
1. Use <strong>PageManager </strong>instead of <strong>PortalManager</strong> on your master page.<br />
<br />
2.&nbsp;Load data in init phase without&nbsp;the <span style="font-family: courier new,courier,monospace;">!RequestHelper.IsPostBack()</span> condition.<br />
<div style="text-align: right;">
 <em>-it-</em></div>
]]></description>
     <pubDate>Wed, 31 Oct 2012 04:59:37 GMT</pubDate>
     <link><![CDATA[http://devnet.kentico.com/FAQs/Web-parts-Controls/Why-is-my-standard-control-data-empty-after-postba.aspx]]></link>     
</item><item>
     <guid isPermaLink="true"><![CDATA[http://devnet.kentico.com/FAQs/General/How-do-you-fix-a-500-Server-Error-while-running-RE.aspx]]></guid>
     <title><![CDATA[How do you fix a 500 Server Error while running REST PUT or DELETE requests?]]></title>
     <description><![CDATA[If you are using WebDAV, you will likely get this error in the server log:<br />
<br />
<em>HTTP Error 500.21 - Internal Server Error</em><br />
<em>Handler &quot;WebDAV&quot; has a bad module &quot;WebDAVModule&quot; in its module list.</em><br />
<br />
The WebDAV module will block both the DELETE and PUT (update) verbs for IIS.<br />
You can either uninstall WebDAV or simply remove it from the Handlers of the site. One way to remove it is to add the following <code>remove</code> lines to your site&#39;s web.config:<br />
<br />
<div class="WebPartError">
	<span class="WebPartErrorTitle">Failed to load widget object.</span> <br /><span title="Message: Object reference not set to an instance of an object. 
Stack Trace: 
   at KenticoCom_WebParts_SyntaxHighlighter.SetupControl()
   at CMSModules_Widgets_InlineControl_InlineWidget.Page_Load(Object sender, EventArgs e)
" class="WebPartErrorMessage">Object reference not set to an instance of an object.</span>
</div><br />
<br />
More details can be found here: <a href="http://forums.iis.net/t/1166025.aspx">http://forums.iis.net/t/1166025.aspx</a><br />
<div style="text-align: right;">
 <em>-zc-</em></div>
]]></description>
     <pubDate>Tue, 02 Oct 2012 03:09:06 GMT</pubDate>
     <link><![CDATA[http://devnet.kentico.com/FAQs/General/How-do-you-fix-a-500-Server-Error-while-running-RE.aspx]]></link>     
</item><item>
     <guid isPermaLink="true"><![CDATA[http://devnet.kentico.com/FAQs/Web-parts-Controls/Why-doesn’t-the-UniGrid-display-the-filter.aspx]]></guid>
     <title><![CDATA[Why doesn’t the UniGrid display the filter?]]></title>
     <description><![CDATA[The UniGrid only displays the filter if it loads more than 25 items by default. You can change the minimal number of items using the <em>FilterLimit </em>property.<br />
<br />
For example:<br />
<br />
<div class="WebPartError">
	<span class="WebPartErrorTitle">Failed to load widget object.</span> <br /><span title="Message: Object reference not set to an instance of an object. 
Stack Trace: 
   at KenticoCom_WebParts_SyntaxHighlighter.SetupControl()
   at CMSModules_Widgets_InlineControl_InlineWidget.Page_Load(Object sender, EventArgs e)
" class="WebPartErrorMessage">Object reference not set to an instance of an object.</span>
</div><br />
<br />
You can also set up the filter limit globally in web.config using key:<br />
<br />
<div class="WebPartError">
	<span class="WebPartErrorTitle">Failed to load widget object.</span> <br /><span title="Message: Object reference not set to an instance of an object. 
Stack Trace: 
   at KenticoCom_WebParts_SyntaxHighlighter.SetupControl()
   at CMSModules_Widgets_InlineControl_InlineWidget.Page_Load(Object sender, EventArgs e)
" class="WebPartErrorMessage">Object reference not set to an instance of an object.</span>
</div><br />
&nbsp;<br />
Related information:<br />
<a href="http://devnet.kentico.com/Knowledge-Base/API-and-Internals/How-to-find-the-location-of-the-code-for-a-page-us.aspx">http://devnet.kentico.com/Knowledge-Base/API-and-Internals/How-to-find-the-location-of-the-code-for-a-page-us.aspx</a><br />
<a href="http://devnet.kentico.com/docs/7_0/controls/index.html?unigrid_definition.htm">http://devnet.kentico.com/docs/7_0/controls/index.html?unigrid_definition.htm</a><br />
&nbsp;
<div style="text-align: right;">
 <em>-hg-</em></div>
]]></description>
     <pubDate>Tue, 02 Oct 2012 03:04:55 GMT</pubDate>
     <link><![CDATA[http://devnet.kentico.com/FAQs/Web-parts-Controls/Why-doesn’t-the-UniGrid-display-the-filter.aspx]]></link>     
</item>
 </channel>
</rss>
