<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Efficy Overflow Q&amp;A - Recent questions tagged category</title>
<link>https://overflow.efficy.io/?qa=tag/category</link>
<description>Powered by Question2Answer</description>
<item>
<title>edit categories in designer and all definition in designer</title>
<link>https://overflow.efficy.io/?qa=7150/edit-categories-in-designer-and-all-definition-in-designer</link>
<description>&lt;p&gt;Hey everyone,&lt;/p&gt;

&lt;p&gt;I have a client who would like the date (ACTIONS.D_BEGINS) not to be editable. Is this done well in the designer?&lt;/p&gt;

&lt;p&gt;I also take advantage of this message to ask you what are the other definitions for the fields in the designer?&lt;img src=&quot;https://overflow.efficy.io/?qa=blob&amp;amp;qa_blobid=9476583402606873137&quot; alt=&quot;enter image description here&quot;&gt;&lt;/p&gt;
</description>
<category>Efficy design guidelines</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=7150/edit-categories-in-designer-and-all-definition-in-designer</guid>
<pubDate>Fri, 22 Nov 2024 14:24:09 +0000</pubDate>
</item>
<item>
<title>Node &lt;category&gt; not allowed in TConsultRequestHandler</title>
<link>https://overflow.efficy.io/?qa=4371/node-category-not-allowed-in-tconsultrequesthandler</link>
<description>&lt;p&gt;Hello Efficy Team, &lt;/p&gt;

&lt;p&gt;According to (my understanding of) the &lt;a rel=&quot;nofollow&quot; href=&quot;https://help.efficy.com/edn/rpcfunctions#category&quot;&gt;documentation&lt;/a&gt;, we can retrieve the data of a categoy in SOAP, with the node &quot;category&quot;.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://overflow.efficy.com/?qa=blob&amp;amp;qa_blobid=2839812894757847389&quot; alt=&quot;enter image description here&quot;&gt;&lt;/p&gt;

&lt;p&gt;However, I get an error when I am trying to use it : &lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://overflow.efficy.com/?qa=blob&amp;amp;qa_blobid=14000412078254602911&quot; alt=&quot;enter image description here&quot;&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://overflow.efficy.com/?qa=blob&amp;amp;qa_blobid=13552593901520736249&quot; alt=&quot;enter image description here&quot;&gt;&lt;/p&gt;

&lt;p&gt;What did I missed ? &lt;/p&gt;

&lt;p&gt;Obviously, I am not in &amp;gt;11.2, I cannot use RPC JSON request ... :( &lt;/p&gt;

&lt;p&gt;Regards, &lt;/p&gt;

&lt;p&gt;Loïc&lt;/p&gt;
</description>
<category>Remote API (JSON, SOAP, Node)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4371/node-category-not-allowed-in-tconsultrequesthandler</guid>
<pubDate>Tue, 28 May 2019 04:53:13 +0000</pubDate>
</item>
<item>
<title>Automatically select the tab of an activated category</title>
<link>https://overflow.efficy.io/?qa=4310/automatically-select-the-tab-of-an-activated-category</link>
<description>&lt;p&gt;When you activate a category, more than 9 times out of 10, you want to enter data for this category and you expect that Efficy will automatically select the corresponding tab for you.&lt;br&gt;
But Efficy doesn't. Do developpers really use the app? ;-)&lt;/p&gt;

&lt;p&gt;Since project team cares for their customers, here is a very simple code to implement this behavior.&lt;/p&gt;

&lt;p&gt;In the &lt;code&gt;pages\dialog\Category.htm&lt;/code&gt; file, call this function via &lt;code&gt;&amp;lt;body onload=&quot;storeInitialCategoriesByEditHandle()&quot;&amp;gt;&lt;/code&gt;:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;function storeInitialCategoriesByEditHandle() {
  var elems = document.forms[0].elements,
  editHandle = &amp;lt; % GetEditHandle() % &amp;gt; ,
  categoriesKeys = [];

  for (var i = 0, len = elems.length; i &amp;lt; len; i++) {
    var e = elems[i];
    if (e.type === 'checkbox' &amp;amp;&amp;amp; e.checked)
      categoriesKeys.push(e.value);
  }

  if (opener.opener.initialCategoriesIndexedByEditHandle === undefined)
    opener.opener.initialCategoriesIndexedByEditHandle = [];

  opener.opener.initialCategoriesIndexedByEditHandle[editHandle] = categoriesKeys;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;From the start of the &lt;code&gt;js/main/edit.js&lt;/code&gt; call this function:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;function checkNewCategory() {
  if (opener.initialCategoriesIndexedByEditHandle === undefined)
    return;

  var initialCategories = opener.initialCategoriesIndexedByEditHandle[Model(&quot;editHandle&quot;)];
  if (initialCategories === undefined)
    return;

  var $catgTabs = $(&quot;a[href^=#catg-]&quot;);
  for (var i = 0, length = $catgTabs.length; i &amp;lt; length; i++) {
    var catgTab = $catgTabs[i],
    hash = catgTab.hash,
    tableId = hash.substring(&quot;#catg-&quot;.length);
    if (parseInt(tableId) % 1000 === 0) // Ignore &quot;Fields&quot; pseudo category
      continue;
    if (initialCategories.indexOf(tableId) === -1) {
      $(catgTab).trigger(&quot;click&quot;);
    }
  }

  opener.initialCategories[Model(&quot;editHandle&quot;)] = undefined;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Any comment is welcome. Positive vote would be appreciated :-)&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4310/automatically-select-the-tab-of-an-activated-category</guid>
<pubDate>Tue, 21 May 2019 17:27:45 +0000</pubDate>
</item>
<item>
<title>EDITING A CATEGORY FIELD VIA A VIRUAL FIELD</title>
<link>https://overflow.efficy.io/?qa=4247/editing-a-category-field-via-a-virual-field</link>
<description>&lt;p&gt;Hi,&lt;/p&gt;

&lt;p&gt;I want to edit a field created in a category via an html page:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;&amp;lt;td&amp;gt;&amp;lt;%GetHeader(&quot;CATEGORY-DOCU$FAC-COMMUNICATION&quot;)%&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;%GetEdit(&quot;CATEGORY-DOCU$FAC-COMMUNICATION&quot;, context=TEXT)%&amp;gt;&amp;lt;/td&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Error:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;DS_DocuEdit_0_Docu: Field 'DOCU$FAC-COMMUNICATION' not found
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Any solution ?&lt;br&gt;
Dimitri&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4247/editing-a-category-field-via-a-virual-field</guid>
<pubDate>Wed, 15 May 2019 12:20:53 +0000</pubDate>
</item>
<item>
<title>Showing fields issu on categorie tutorial</title>
<link>https://overflow.efficy.io/?qa=3777/showing-fields-issu-on-categorie-tutorial</link>
<description>&lt;p&gt;Hi everyone,&lt;/p&gt;

&lt;p&gt;just for telling if someone have the same issue. &lt;br&gt;
I got some error of editHandle in following the tutorial to display fields in consult inside category with the category form responsive because of a multivalue and lookup inside consult.&lt;/p&gt;

&lt;p&gt;I've send a mail to kristof, to let it know : but i've wrote a litle code to overcome this mistake, it's maybe not the best, but it's working till waiting to a better solution from Kristoph :).&lt;/p&gt;

&lt;p&gt;Just add this code inside FormFieldsEditCustom.txt. It should work. :)&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;/**
* Rewrite field for displaying fields inside category for comp
*/
field.MULTIVALUE {[
&amp;lt;%If(&quot;%%GetArgument('page', context=ATTR)&quot;, value=&quot;pages/desktop/Consult.htm&quot;,  then=|&amp;lt;textarea id=&quot;a-CATEGORY-$CATG$-$FIELD$&quot; readonly&amp;gt;&amp;lt;%GetField('$FIELD$', type=&quot;MULTIVALUE&quot;, separator=&quot;, &quot;, context=&quot;TEXT&quot;)%&amp;gt;&amp;lt;/textarea&amp;gt;|,else=|
&amp;lt;%GetEdit('$FIELD$',
data-ajax-url='dialog?_macro=JsonMultiValueList&amp;amp;_macrofile=MacroAjax&amp;amp;edithandle=&amp;lt;%GetEditHandle()%&amp;gt;&amp;amp;field=$FIELD$&amp;amp;detail=&amp;lt;%GetArgument(&quot;DETAIL&quot;,context=ATTR)%&amp;gt;&amp;amp;detailkey=&amp;lt;%GetArgument(&quot;DETAILKEY&quot;,context=ATTR)%&amp;gt;',
data-json='{&amp;lt;%GetField(&quot;$FIELD$&quot;, type=&quot;MULTIVALUE&quot;, json=T, context=ATTR)%&amp;gt;}')%&amp;gt;
|)%&amp;gt;
]}
field.CATG_MULTIVALUE {[
&amp;lt;%If(&quot;%%GetArgument('page', context=ATTR)&quot;, value=&quot;pages/desktop/Consult.htm&quot;,  then=|&amp;lt;textarea id=&quot;b-CATEGORY-$CATG$-$FIELD$&quot; readonly&amp;gt;&amp;lt;%GetField('$FIELD$', category=&quot;$CATG$&quot;, type=&quot;MULTIVALUE&quot;, separator=&quot;, &quot;, context=&quot;TEXT&quot;)%&amp;gt;&amp;lt;/textarea&amp;gt;|,else=|
&amp;lt;%GetEdit('$FIELD$', category=&quot;$CATG$&quot;,
        data-ajax-url='dialog?_macro=JsonMultiValueList&amp;amp;_macrofile=MacroAjax&amp;amp;edithandle=&amp;lt;%GetEditHandle()%&amp;gt;&amp;amp;field=CATEGORY-$CATG$-$FIELD$&amp;amp;detail=&amp;lt;%GetArgument(&quot;DETAIL&quot;,context=ATTR)%&amp;gt;&amp;amp;detailkey=&amp;lt;%GetArgument(&quot;DETAILKEY&quot;,context=ATTR)%&amp;gt;',
        data-json='{&amp;lt;%GetField(&quot;$FIELD$&quot;, category=&quot;$CATG$&quot;, type=&quot;MULTIVALUE&quot;, json=T, context=ATTR)%&amp;gt;}')%&amp;gt;
        |)%&amp;gt;
]}
field.LOOKUP {[
&amp;lt;%If(&quot;%%GetArgument('page', context=ATTR)&quot;, value=&quot;pages/desktop/Consult.htm&quot;,  then=|&amp;lt;textarea id=&quot;c-CATEGORY-$CATG$-$FIELD$&quot; readonly&amp;gt;&amp;lt;%GetField(&quot;R_$FIELD$&quot;, context=TEXT)%&amp;gt;&amp;lt;/textarea&amp;gt;|,else=|
&amp;lt;%GetEdit(&quot;$FIELD$&quot;, type=&quot;LOOKUP&quot;, data-placeholder=&quot;&amp;lt;%GetLabel('Select Value')%&amp;gt;...&quot;)%&amp;gt;
|)%&amp;gt; ]}
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Have a nice working day :).&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3777/showing-fields-issu-on-categorie-tutorial</guid>
<pubDate>Tue, 18 Dec 2018 12:20:19 +0000</pubDate>
</item>
<item>
<title>Create a multi value field, on acc_account but filter on a specific group</title>
<link>https://overflow.efficy.io/?qa=3581/create-multi-value-field-accaccount-filter-specific-group</link>
<description>&lt;p&gt;Hello Efficy Team, &lt;/p&gt;

&lt;p&gt;I am looking for the best way to filter a multivalue field on acc_account in a category. For exemple, in a category, the possibly to select only user from the group &quot;sales&quot;.&lt;/p&gt;

&lt;p&gt;We thought of three &quot;simple&quot; solutions :&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;In client side, with a serverscript, dynamically load the acc_account &lt;/li&gt;
&lt;li&gt;Report the users in an other lookup, with their name and their k_user (I don't like this solution)&lt;/li&gt;
&lt;li&gt;Edit the &quot;sqlrule&quot; of the multivalue field (but we struggle with the semicolon separator)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The solution provided by Kristof in the project guide about the &quot;form in category&quot; might do the job (because we could set a special definition for this field). Am I correct ? &lt;/p&gt;

&lt;p&gt;Have someone another idea ? &lt;/p&gt;

&lt;p&gt;Cheers, &lt;/p&gt;

&lt;p&gt;Loïc&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3581/create-multi-value-field-accaccount-filter-specific-group</guid>
<pubDate>Tue, 02 Oct 2018 11:21:50 +0000</pubDate>
</item>
<item>
<title>Show field in consult if category is activated</title>
<link>https://overflow.efficy.io/?qa=3579/show-field-in-consult-if-category-is-activated</link>
<description>&lt;p&gt;Hello Efficy team, &lt;/p&gt;

&lt;p&gt;I struggle to solve a simple problem.&lt;/p&gt;

&lt;p&gt;I have a category in companies. The customer asked me to format some information and to show the information only when the field is different form zero and the customer have rights on the category. So I did a custom field : &lt;/p&gt;

&lt;h3&gt;FormFieldsConsult&lt;/h3&gt;

&lt;pre&gt;&lt;code&gt;&amp;lt;%Macro(FieldRights
        , $myfield$=`%%GetField('$FIELD$', category=&quot;COMP$CHIFFRES&quot;, nolabel=T)`
        , $value$=`%%GetField('$FIELD$', category='$CATG$')`
        , $display$=| €|
 )%&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;h3&gt;MacroConsult&lt;/h3&gt;

&lt;pre&gt;&lt;code&gt;    &amp;lt;dt&amp;gt;&amp;lt;%OnArgument(Argvalue='$value$',condition='case', value='', then=||, value=0, then=||, else=`&amp;lt;%LoadScript(&quot;CommonLibrary&quot;)%&amp;gt;&amp;lt;%RunScript(formatCurrency, value='$value$')%&amp;gt; $display$ `)%&amp;gt;&amp;lt;/dt&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;My code work as expected for a company were the category has been activated.&lt;/p&gt;

&lt;p&gt;But if the category is not activated, it show &quot;0&quot;.&lt;/p&gt;

&lt;p&gt;I tried this : &lt;/p&gt;

&lt;pre&gt;&lt;code&gt; &amp;lt;dd&amp;gt;&amp;lt;%OnArgument(Argvalue='$value$', condition='case', value='', then=||, value=0, then=||, else=|$myfield$|)%&amp;gt;&amp;lt;/dd&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;But is show &quot;0&quot; again.&lt;/p&gt;

&lt;p&gt;I did activate the option &quot;displayed if not empty&quot; in conficy  : &lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://overflow.efficy.com/?qa=blob&amp;amp;qa_blobid=16225853632504940352&quot; alt=&quot;enter image description here&quot;&gt;&lt;/p&gt;

&lt;p&gt;How can I test if the category were activated ? I thought of an SQL query but it seams a bit overkill.&lt;/p&gt;

&lt;p&gt;The client is in Efficy 10sp2+. If there is a solution in Efficy 11, this also good (the upgrade is planned).&lt;/p&gt;

&lt;p&gt;Thanks in advance, &lt;/p&gt;

&lt;p&gt;Loïc&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3579/show-field-in-consult-if-category-is-activated</guid>
<pubDate>Mon, 01 Oct 2018 11:56:32 +0000</pubDate>
</item>
<item>
<title>Rights on categories + chronos</title>
<link>https://overflow.efficy.io/?qa=3565/rights-on-categories-chronos</link>
<description>&lt;p&gt;Dear all, &lt;/p&gt;

&lt;p&gt;A client reported me a problem in Efficy 10SP2+, but I am not sure if it is a bug or a configuration problem : &lt;/p&gt;

&lt;p&gt;Let suppose we have three users : &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;User A&lt;/li&gt;
&lt;li&gt;User B&lt;/li&gt;
&lt;li&gt;User C&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Each user is member of a group : &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;User A : Everyone + Group 1 + Admin&lt;/li&gt;
&lt;li&gt;User B : Everyone + Group 1&lt;/li&gt;
&lt;li&gt;User C : Everyone + Group 2&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;There is a category on &quot;contacts&quot; called &quot;Employee&quot;.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Everyone should not have access&lt;/li&gt;
&lt;li&gt;Group 1 should read the content&lt;/li&gt;
&lt;li&gt;Group 2 should not see the category and his content (no access then)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If User A or B modify information on a contact : &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A and B see the information&lt;/li&gt;
&lt;li&gt;C do not see the information the information in the category (he does not see the category).&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;So far, everything work as expected.&lt;/p&gt;

&lt;p&gt;BUT : &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;User A, B &lt;strong&gt;AND&lt;/strong&gt; user C see the change in the chronos, and what's been changed !&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Is that a configuration problem or a bug ? If it is a bug, is that fixed in Efficy 11.1 ? &lt;/p&gt;

&lt;p&gt;Thanks in advance for your help, &lt;/p&gt;

&lt;p&gt;Regards, &lt;/p&gt;

&lt;p&gt;Loïc&lt;/p&gt;
</description>
<category>Efficy Designer (Conficy)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3565/rights-on-categories-chronos</guid>
<pubDate>Tue, 25 Sep 2018 08:46:50 +0000</pubDate>
</item>
<item>
<title>Updating field in Category on which current user has no rights</title>
<link>https://overflow.efficy.io/?qa=3305/updating-field-in-category-on-which-current-user-has-rights</link>
<description>&lt;p&gt;Updating fiel in Category on which user has no rights from a serverscript, is this possible ?&lt;/p&gt;

&lt;p&gt;Database.DisableSecurity = true doesn't have an effect.&lt;/p&gt;

&lt;p&gt;Error stays &quot;Category &quot;DOCU$INVOICING&quot; does not exist or is not active&lt;/p&gt;

&lt;p&gt;I use : &lt;/p&gt;

&lt;pre&gt;&lt;code&gt;Database.UpdateCategory(EditDocuHandle, &quot;DOCU$INVOICING&quot;, &quot;F_INVOICE_STATUS&quot;, statusValue);
&lt;/code&gt;&lt;/pre&gt;
</description>
<category>WorkFlow / Serverscript</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3305/updating-field-in-category-on-which-current-user-has-rights</guid>
<pubDate>Fri, 15 Jun 2018 14:17:36 +0000</pubDate>
</item>
<item>
<title>Categories order</title>
<link>https://overflow.efficy.io/?qa=2780/categories-order</link>
<description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;Is it possible to control the order of categories tabs in Edit mode? i believe the default order is the oldest (created first) get displayed first, but is there a way to change this? except deleting and recreating in desired order.&lt;/p&gt;

&lt;p&gt;Thank you for help in advance.&lt;/p&gt;

&lt;p&gt;Best Regards.&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=2780/categories-order</guid>
<pubDate>Wed, 29 Nov 2017 15:26:12 +0000</pubDate>
</item>
<item>
<title>Filter Multiselect filed in category based on value on main Tab</title>
<link>https://overflow.efficy.io/?qa=2695/filter-multiselect-filed-in-category-based-on-value-main-tab</link>
<description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;I'm trying to filter multi-select field in category based on value chosen in lookup on Main tab in Cases. I've tried to achieb this by adding this piece of JS to MacroEditSCustom&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;if($('#CASETYPE').val()){
            var newDataAjaxURL = &quot;dialog?_macro=JsonDynaMultiValueListCaseCat&amp;amp;_macrofile=MacroAjax&amp;amp;edithandle=&amp;lt;%GetEditHandle()%&amp;gt;&amp;amp;field=CATEGORY-CASE$GENERAL-F_CATEGORY&amp;amp;casetype=&quot; + $('#CASETYPE').val();
            var $FieldName = $(&quot;#CATEGORY-CASE$GENERAL-F_CATEGORY&quot;)
            if($FieldName.length){
                $FieldName.attr('data-ajax-url', newDataAjaxURL);
            }
        }
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;and the definition in MacroAjaxCustom&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;JsonDynaMultiValueListCaseCat {[&amp;lt;%Delay(0)%&amp;gt;RunQuery(id='DynaMultiValueListCaseCat', 
    SQL='Select F_CATEGORY as F_CATEGORY_EN, * from LK_CASE_CATEGORY CC where f_case_type like :param1 and disabled = 0 order by k_sort',
    Param1=&quot;%;&amp;lt;%GetArgument('casetype')%&amp;gt;;%&quot;
    )%&amp;gt;
    &amp;lt;%Delay(0)%&amp;gt;GetDataGrid(query='DynaMultiValueListCaseCat', count=-1, norecords='', sort='F_CATEGORY_&amp;lt;%GetLanguage()%&amp;gt;' , nolinefeed=T, templatetext=|[&amp;lt;#repeat&amp;gt;
    {
         &quot;id&quot;:&amp;lt;#F=K_CASE_CATEGORY&amp;gt;
        ,&quot;text&quot;:&quot;&amp;lt;#F=F_CATEGORY_&amp;lt;%GetLanguage()%&amp;gt;;jsontext=T;nospace=T&amp;gt;&quot; 

    }&amp;lt;#S=;SEPARATOR=,&amp;gt;&amp;lt;/#repeat&amp;gt;
]|)%&amp;gt;]}
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Plus changing CASETYPE in Forms with definition LOOKUPMASTER and add it in FormFieldsEditCustom&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;field.LOOKUPMASTER {[&amp;lt;%GetEdit(&quot;$FIELD$&quot;, type=&quot;LOOKUP&quot;, onchange=&quot;JavaScript:CebPerform('CEB_STATE');&quot;)%&amp;gt;]}
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;so every time user chooses new value it refresh the page and set new URL on attribute &quot;data-ajax-url&quot;.&lt;/p&gt;

&lt;p&gt;It works fine if i save directly the case, but if i hit the button &quot;apply&quot; then it's not working, even the attribute has the right URL, but on clicking on the field i get the standard ajax-url&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://overflow.efficy.com/?qa=blob&amp;amp;qa_blobid=4898124571547601240&quot; alt=&quot;enter image description here&quot;&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://overflow.efficy.com/?qa=blob&amp;amp;qa_blobid=12200509318166286189&quot; alt=&quot;enter image description here&quot;&gt;&lt;/p&gt;

&lt;p&gt;Please advise.&lt;br&gt;
Thank you for your help in advance.&lt;br&gt;
Best Regards.&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=2695/filter-multiselect-filed-in-category-based-on-value-main-tab</guid>
<pubDate>Wed, 13 Sep 2017 13:36:16 +0000</pubDate>
</item>
<item>
<title>Is it possible to deactivate category when choosing a value from lookup filed</title>
<link>https://overflow.efficy.io/?qa=2362/possible-deactivate-category-choosing-value-lookup-filed</link>
<description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;I'm trying to do activating/deactivating a category depending if a specific value is chosen on lookup field.&lt;/p&gt;

&lt;p&gt;first I added onchange event to lookup field to check if the a certain value is chosen then i'm activating a category, but if this value is changed to another one, then how can I deactivate the category in the edit context (this is before applying or saving the record because user needs to fill in data in the category if the certain value is chosen)&lt;/p&gt;

&lt;p&gt;Thanks in advance for your advise and help.&lt;/p&gt;

&lt;p&gt;Best Regards.&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=2362/possible-deactivate-category-choosing-value-lookup-filed</guid>
<pubDate>Thu, 16 Mar 2017 10:09:10 +0000</pubDate>
</item>
<item>
<title>How can I know if a category has been deactivated in the edit context ?</title>
<link>https://overflow.efficy.io/?qa=2152/how-can-know-category-has-been-deactivated-the-edit-context</link>
<description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;I need to know if a category has been deactivated in the edit context.&lt;/p&gt;

&lt;p&gt;I try to use the following methods in the WF (beforeCommit) but they don't allow me to know if the category has been deactivated or not in the current context :&lt;br&gt;
- CategoryModified : returns false&lt;br&gt;
- OldCategoryFieldValue : returns an empty string&lt;br&gt;
- GetCategoryDataSet : returns a dataset&lt;br&gt;
- .IsEmpty : returns true&lt;/p&gt;

&lt;p&gt;I wonder if this information is stored in the dataset or if Efficy provides a way to know this ?&lt;/p&gt;

&lt;p&gt;Thank you,&lt;/p&gt;

&lt;p&gt;Regards,&lt;br&gt;
Pierre.&lt;/p&gt;
</description>
<category>WorkFlow / Serverscript</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=2152/how-can-know-category-has-been-deactivated-the-edit-context</guid>
<pubDate>Tue, 03 Jan 2017 13:38:15 +0000</pubDate>
</item>
<item>
<title>Is it possible to create a category automatically based on field in Document</title>
<link>https://overflow.efficy.io/?qa=2071/possible-create-category-automatically-based-field-document</link>
<description>&lt;p&gt;For our documents we have a field which contains a select list with the type of the document. For example: incoming files, outgoing files, document containing financial files etc. &lt;/p&gt;

&lt;p&gt;When creating a new document I automatically want to add the category based on the chosen type. How can I make this possible?&lt;/p&gt;

&lt;p&gt;Thanks!&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=2071/possible-create-category-automatically-based-field-document</guid>
<pubDate>Tue, 06 Dec 2016 10:14:52 +0000</pubDate>
</item>
<item>
<title>Master-Detail on a Category doesn't work for the Detail field in Efficy 10 SP2</title>
<link>https://overflow.efficy.io/?qa=2050/master-detail-category-doesnt-work-for-detail-field-efficy</link>
<description>&lt;p&gt;Hi,&lt;/p&gt;

&lt;p&gt;I'm doing a conversion of a customer to Efficy 10SP2 and this customer uses a Master-Detail in a Category. I'm able to fill in the Master-field, but when I try to fill in the Detail-field I get the following error:&lt;br&gt;
&lt;img src=&quot;https://overflow.efficy.com/?qa=blob&amp;amp;qa_blobid=14416775958443057872&quot; alt=&quot;Error when clicking on the Detail-field&quot;&gt;&lt;/p&gt;

&lt;p&gt;Is this a known issue?&lt;/p&gt;

&lt;p&gt;Best regards,&lt;br&gt;
Jeroen Floor&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=2050/master-detail-category-doesnt-work-for-detail-field-efficy</guid>
<pubDate>Mon, 28 Nov 2016 16:13:13 +0000</pubDate>
</item>
<item>
<title>conditioning display of fields in a category</title>
<link>https://overflow.efficy.io/?qa=1968/conditioning-display-of-fields-in-a-category</link>
<description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;I wish I could condition the display of fields in a category based on the value of a field of another category of the same table.&lt;/p&gt;

&lt;p&gt;Would you have an idea of ​​the feasibility of it and how?&lt;/p&gt;

&lt;p&gt;thank you in advance&lt;/p&gt;

&lt;p&gt;Michael&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=1968/conditioning-display-of-fields-in-a-category</guid>
<pubDate>Wed, 26 Oct 2016 07:37:04 +0000</pubDate>
</item>
<item>
<title>Width of the category-lookup</title>
<link>https://overflow.efficy.io/?qa=1835/width-of-the-category-lookup</link>
<description>&lt;p&gt;There is a customer who wants to make the dropdownlists for a Lookup field in a category wider. They currently use Efficy 2012 and in that version this was implemented as a custom.  &lt;/p&gt;

&lt;p&gt;Is there any possibility to customise that in Efficy 10th?&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=1835/width-of-the-category-lookup</guid>
<pubDate>Thu, 25 Aug 2016 12:53:11 +0000</pubDate>
</item>
<item>
<title>How to move category into the main tab?</title>
<link>https://overflow.efficy.io/?qa=1713/how-to-move-category-into-the-main-tab</link>
<description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;Have you an idea how to display a set of fields from a category(radio button,textarea) into main tab in a edit of entity to avoid to go  through the category to do change.&lt;/p&gt;

&lt;p&gt;Exemple: in edit of appointment, I've category ACT$AEC( with 4 panels). I want to move that into first tab (with field D&lt;em&gt;START,D&lt;/em&gt;END,...)&lt;/p&gt;

&lt;p&gt;I've try to add virtual field with custom definition in form of appointment but it's not responsive design.&lt;/p&gt;

&lt;p&gt;Thanks,&lt;br&gt;
Ridouan&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=1713/how-to-move-category-into-the-main-tab</guid>
<pubDate>Fri, 17 Jun 2016 10:51:52 +0000</pubDate>
</item>
<item>
<title>How to make a Memo formatted field in a category (Efficy 10)</title>
<link>https://overflow.efficy.io/?qa=1638/how-to-make-a-memo-formatted-field-in-a-category-efficy-10</link>
<description>&lt;p&gt;Hi,&lt;/p&gt;

&lt;p&gt;We have a Custom Field of type &quot;Memo&quot; in a Category, and we have some problems with it.&lt;/p&gt;

&lt;p&gt;First, problem in consult:&lt;br&gt;
The field is displayed like a &quot;text&quot; Memo, and not formatted.&lt;br&gt;
i know that in Efficy 2012 we use fckeditor and fckattach function,  but in efficy 10, with ckeditor i don't find the good way to do that.&lt;/p&gt;

&lt;p&gt;Second, problem in edit:&lt;br&gt;
Some times, the edit part to write text is not displayed, we must &quot;play&quot; with the Maximize button or with the size of the windows to see it. &lt;br&gt;
With the standard memo field it's working good, ..  any idea ?&lt;/p&gt;

&lt;p&gt;Third, i would like to:&lt;br&gt;
Remove the &quot;plain text&quot; button.&lt;br&gt;
I think it is possible to use a removeButton, but i don't find the good way to do it.&lt;/p&gt;

&lt;p&gt;thx..&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=1638/how-to-make-a-memo-formatted-field-in-a-category-efficy-10</guid>
<pubDate>Fri, 20 May 2016 10:06:51 +0000</pubDate>
</item>
<item>
<title>Efficy 10: How does a category formatted memo field can be shown formatted in consult mode</title>
<link>https://overflow.efficy.io/?qa=1409/efficy-does-category-formatted-field-shown-formatted-consult</link>
<description>&lt;p&gt;Hi,&lt;br&gt;
I have a category formatted memo field F_INFORMATIONS in PROD$COLLABORATEUR category table.&lt;br&gt;
How can it be shown formatted in Prod consult category page?&lt;/p&gt;

&lt;p&gt;I've tried to define this field in FormFieldsConsultCustom.txt file as:&lt;br&gt;
&lt;code&gt;field.F_INFORMATIONS {[&amp;lt;dt&amp;gt;&amp;lt;%OnField(&quot;F_INFORMATIONS&quot;, category=&quot;PROD$COLLABORATEUR&quot;, then=|&amp;lt;div class=&quot;consult-memo&quot;&amp;gt;
        &amp;lt;textarea&amp;gt;&amp;lt;%GetField('F_INFORMATIONS', category=&quot;PROD$COLLABORATEUR&quot;, type=&quot;RAWHTML&quot;)%&amp;gt;&amp;lt;/textarea&amp;gt;
        &amp;lt;iframe src =&quot;&quot; frameborder=&quot;0&quot;&amp;gt; &amp;lt;/iframe&amp;gt;
    &amp;lt;/div&amp;gt;|)%&amp;gt;&amp;lt;/dt&amp;gt;]}
But it doesn't work
Thanks for your help.
best regards
Anne&lt;/code&gt;:&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=1409/efficy-does-category-formatted-field-shown-formatted-consult</guid>
<pubDate>Mon, 14 Mar 2016 15:12:34 +0000</pubDate>
</item>
<item>
<title>Build 6640: pickListSearch in category</title>
<link>https://overflow.efficy.io/?qa=1344/build-6640-picklistsearch-in-category</link>
<description>&lt;p&gt;We found a flaw in build 6640, due to a remark of a customer after migration.&lt;/p&gt;

&lt;p&gt;This Is according to a lookup in a category with the Edit style: Lookup-up with search window (this lookup has more than 1500 records).&lt;/p&gt;

&lt;p&gt;In a category it wants to use the data-msg=&quot;pickListSearch;….” but this function doesn’t exists in the build.&lt;br&gt;
So it looks like we didn’t migrate this function, because it’s only present in the efficy.dll.&lt;/p&gt;

&lt;p&gt;I ask this because I think it is a high urgency case, the customer uses this dropdowns in multiple ways. &lt;br&gt;
Because the lookup has 1500 records there is no work-around.&lt;/p&gt;

&lt;p&gt;Anybody has a solution for this?&lt;/p&gt;

&lt;p&gt;Regards,&lt;/p&gt;

&lt;p&gt;Michael de Groot&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=1344/build-6640-picklistsearch-in-category</guid>
<pubDate>Tue, 16 Feb 2016 13:54:17 +0000</pubDate>
</item>
<item>
<title>Filter Acc_Accounts as lookup</title>
<link>https://overflow.efficy.io/?qa=1238/filter-accaccounts-as-lookup</link>
<description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;I'm using lookup acc_accounts in a custom lookup field, and i want to filter this list to show only the users (not the groups). the custom field is in category, so i think FORMS can be used here.&lt;/p&gt;

&lt;p&gt;Please let me know your suggestion and advises.&lt;/p&gt;

&lt;p&gt;Thank you.&lt;br&gt;
Best Regards.&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=1238/filter-accaccounts-as-lookup</guid>
<pubDate>Mon, 18 Jan 2016 15:05:02 +0000</pubDate>
</item>
<item>
<title>What is the syntax to display the R_VALUE of a CATEGORY LOOKUP into a form ?</title>
<link>https://overflow.efficy.io/?qa=1023/what-the-syntax-display-the-rvalue-category-lookup-into-form</link>
<description>&lt;p&gt;I try to display into the project consultation form the value of a lookup by key into a category.&lt;/p&gt;

&lt;p&gt;The field is an F&lt;em&gt;XXX or je veux le R&lt;/em&gt;F_XXX.&lt;br&gt;
Of course I can create a virtual field to get the information of my category but I imagine that it all possible to do it easily just by using the right tag. &lt;/p&gt;

&lt;p&gt;By default it's CATEGORY. I tried LOOKUP but without success. Not better with the following combinaison CATEGORYLOOKUP or CATEGORY LOOKUP.&lt;/p&gt;

&lt;p&gt;Any quick solution ?   &lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=1023/what-the-syntax-display-the-rvalue-category-lookup-into-form</guid>
<pubDate>Fri, 18 Dec 2015 13:46:26 +0000</pubDate>
</item>
<item>
<title>Do visual representation for values in categroy</title>
<link>https://overflow.efficy.io/?qa=764/do-visual-representation-for-values-in-categroy</link>
<description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;Please advice how can i do visual representation (e.g. red, amber, and green dots or balls) for drop-down list values in category? I want hem to be shown in consult card of project and in project list grid.&lt;/p&gt;

&lt;p&gt;Thank you.&lt;br&gt;
Best Regards.&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=764/do-visual-representation-for-values-in-categroy</guid>
<pubDate>Wed, 16 Sep 2015 16:06:25 +0000</pubDate>
</item>
<item>
<title>EFFICY 2012 Summer - How can I create a formatted memo in a category</title>
<link>https://overflow.efficy.io/?qa=594/efficy-2012-summer-how-can-create-formatted-memo-in-category</link>
<description>&lt;p&gt;Hi,&lt;br&gt;
I have create a memo field in a category but the customer need to enter formatted data in it.&lt;br&gt;
How can this be done in Efficy 2012 summer?&lt;br&gt;
Thanks and regards&lt;br&gt;
Anne&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=594/efficy-2012-summer-how-can-create-formatted-memo-in-category</guid>
<pubDate>Thu, 30 Jul 2015 15:01:22 +0000</pubDate>
</item>
<item>
<title>Efficy 2014 - How can I select a category in Consult mode</title>
<link>https://overflow.efficy.io/?qa=524/efficy-2014-how-can-i-select-a-category-in-consult-mode</link>
<description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;I need to show a category instead of the &quot;Fields&quot; Panel in Company consult mode.&lt;/p&gt;

&lt;p&gt;I have add following function in the js\main\consult.js script file :&lt;/p&gt;

&lt;p&gt;if ((Model('entity') === 'Comp') &amp;amp;&amp;amp; ((Model('detail') === 'Catg'))) {&lt;br&gt;
        $(&quot;a[href='#catg-80011']&quot;).click();&lt;br&gt;
      }&lt;/p&gt;

&lt;p&gt;It's working except at first connection or when I hit F5 to reload.&lt;br&gt;
How can I fix that?&lt;/p&gt;

&lt;p&gt;Thanks and regards&lt;br&gt;
Anne&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=524/efficy-2014-how-can-i-select-a-category-in-consult-mode</guid>
<pubDate>Mon, 20 Jul 2015 17:25:40 +0000</pubDate>
</item>
<item>
<title>Efficy 2014 - display a picture in consult that is contain in a category</title>
<link>https://overflow.efficy.io/?qa=226/efficy-2014-display-picture-consult-that-contain-category</link>
<description>&lt;p&gt;I have to display a picture on the consult page of a company like the contact consult page, but my picture is contain in a Category and not in the Company table.&lt;/p&gt;

&lt;p&gt;I have copied the consult field definition of PICTURE.cont like this&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;field.PICTURE.Comp {[&amp;lt;dt&amp;gt;&amp;lt;img src =&quot;img?consulthandle=&amp;lt;%GetArgument('ConsultHandle')%&amp;gt;&amp;amp;category=COMP$PHOTOS&amp;amp;field=F_PHOTOS&quot; onerror=&quot;var _src = '../efficy/imgnew/default-user.jpg';if (this.src!==_src){this.src = _src;}&quot;&amp;gt;&amp;lt;/dt&amp;gt;]}
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;But the picture doesn't show and I don't receive any error.&lt;/p&gt;

&lt;p&gt;Does anyone know how to do ?&lt;/p&gt;

&lt;p&gt;Best Regards,&lt;br&gt;
Stéphane RONCIN&lt;br&gt;
Consultant&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=226/efficy-2014-display-picture-consult-that-contain-category</guid>
<pubDate>Fri, 20 Feb 2015 11:22:46 +0000</pubDate>
</item>
</channel>
</rss>