Note that there are some explanatory texts on larger screens.

plurals
  1. POAlfresco CMS issues
    primarykey
    data
    text
    <p>We have Alfresco (Community Edition 4.2) environment set on Server. WE created some websites and Custom content model and deployed on server. </p> <p>We are facing following issues which need to resolved.</p> <ol> <li><p>RTF Field : In custom content model we have defined a rtf field. This rtf field is not saving its value.</p></li> <li><p>Folder Creation: There is no option available to create Folders in Document library.</p></li> <li><p>Web Script Query: We need to write webscript queries to fetch the data for each website separately.</p></li> </ol> <p><img src="https://i.stack.imgur.com/AWXpP.jpg" alt="enter image description here"></p> <p><img src="https://i.stack.imgur.com/4fAJG.jpg" alt="enter image description here"></p> <p><img src="https://i.stack.imgur.com/5I96Q.jpg" alt="enter image description here"></p> <p>following is code from share-forms-config for RTF fields</p> <pre><code>&lt;config evaluator="node-type" condition="custom:questionscategory"&gt; &lt;forms&gt; &lt;!-- Default form configuration for the cm:content type --&gt; &lt;form&gt; &lt;field-visibility&gt; &lt;show id="cm:name" /&gt; &lt;show id="custom:categoyTitle" /&gt; &lt;show id="custom:categoryDesc" /&gt; &lt;/field-visibility&gt; &lt;appearance&gt; &lt;field id="custom:categoryDesc"&gt; &lt;control template="/org/alfresco/components/form/controls/richtext.ftl"&gt; &lt;control-param name="editorAppearance"&gt;full&lt;/control-param&gt; &lt;/control&gt; &lt;/field&gt; &lt;/appearance&gt; &lt;/form&gt; &lt;form id="doclib-simple-metadata"&gt; &lt;field-visibility&gt; &lt;show id="cm:name" /&gt; &lt;show id="custom:categoyTitle" /&gt; &lt;show id="custom:categoryDesc" /&gt; &lt;/field-visibility&gt; &lt;appearance&gt; &lt;field id="custom:categoryDesc"&gt; &lt;control template="/org/alfresco/components/form/controls/richtext.ftl"&gt; &lt;control-param name="editorAppearance"&gt;full&lt;/control-param&gt; &lt;/control&gt; &lt;/field&gt; &lt;/appearance&gt; &lt;/form&gt; &lt;/forms&gt; &lt;/config&gt; &lt;config evaluator="model-type" condition="custom:questionscategory"&gt; &lt;forms&gt; &lt;!-- Default form configuration for the cm:content type --&gt; &lt;form&gt; &lt;field-visibility&gt; &lt;show id="cm:name" /&gt; &lt;show id="custom:categoyTitle" /&gt; &lt;show id="custom:categoryDesc" /&gt; &lt;/field-visibility&gt; &lt;appearance&gt; &lt;field id="custom:categoryDesc"&gt; &lt;control template="/org/alfresco/components/form/controls/richtext.ftl"&gt; &lt;control-param name="editorAppearance"&gt;full&lt;/control-param&gt; &lt;/control&gt; &lt;/field&gt; &lt;/appearance&gt; &lt;/form&gt; &lt;/forms&gt; &lt;/config&gt; </code></pre> <p><strong>here is the query I have written to fetch data..I need to add website name to it</strong></p> <p>// locate folder by path // NOTE: only supports path beneath company home, not from root var query='TYPE:custom\:questionscategory'; var fbaQuetions = search.luceneSearch(query); if (fbaQuetions== undefined || fbaQuetions.isContainer) { status.code = 404; status.message = "fbaQuetions " + url.extension + " not found."; status.redirect = true; } model.folder = fbaQuetions;</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload