<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Efficy Overflow Q&amp;A - Recent questions tagged efficy</title>
<link>https://overflow.efficy.io/?qa=tag/efficy</link>
<description>Powered by Question2Answer</description>
<item>
<title>How can we integrate AmCharts 5 in Efficy 12?</title>
<link>https://overflow.efficy.io/?qa=6983/how-can-we-integrate-amcharts-5-in-efficy-12</link>
<description>&lt;p&gt;This is my example code, but the Widget window stays blanc&lt;/p&gt;

&lt;p&gt;&quot;MacroWidgetCustom.txt&quot;&lt;br&gt;
    /* &lt;em&gt;macrofile=MacroWidgets&amp;amp;&lt;/em&gt;macro=am5Demo */&lt;br&gt;
am5Demo {[&lt;br&gt;
&amp;lt;%UseScript('custom/js/amcharts5/index', fixedline=T)%&amp;gt;&lt;br&gt;
&amp;lt;%UseScript('custom/js/amcharts5/percent', fixedline=T)%&amp;gt;&lt;br&gt;
&amp;lt;%UseScript('custom/js/amcharts5/themes/Animated', fixedline=T)%&amp;gt;&lt;br&gt;
&lt;br&gt;
    #chartdiv2 {&lt;br&gt;
        width: 100%;&lt;br&gt;
        height: 100%;&lt;br&gt;
    }&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
    // Create root and chart&lt;br&gt;
var root = am5.Root.new(&quot;chartdiv2&quot;);&lt;/p&gt;

&lt;p&gt;root.setThemes([&lt;br&gt;
  am5themes_Animated.new(root)&lt;br&gt;
]);&lt;/p&gt;

&lt;p&gt;var chart1 = root.container.children.push(&lt;br&gt;
  am5percent.PieChart.new(root, {})&lt;br&gt;
);&lt;/p&gt;

&lt;p&gt;// Define data&lt;br&gt;
var data1 = [{&lt;br&gt;
  country: &quot;France&quot;,&lt;br&gt;
  sales: 100000&lt;br&gt;
}, {&lt;br&gt;
  country: &quot;Spain&quot;,&lt;br&gt;
  sales: 160000&lt;br&gt;
}, {&lt;br&gt;
  country: &quot;United Kingdom&quot;,&lt;br&gt;
  sales: 80001&lt;br&gt;
}];&lt;/p&gt;

&lt;p&gt;// Create series&lt;br&gt;
var series1 = chart1.series.push(&lt;br&gt;
  am5percent.PieSeries.new(root, {&lt;br&gt;
name: &quot;Series&quot;,&lt;br&gt;
valueField: &quot;sales&quot;,&lt;br&gt;
categoryField: &quot;country&quot;&lt;br&gt;
  })&lt;br&gt;
);&lt;/p&gt;

&lt;p&gt;series1.data.setAll(data1);&lt;/p&gt;

&lt;p&gt;// Disabling labels and ticks&lt;br&gt;
series1.labels.template.set(&quot;visible&quot;, false);&lt;br&gt;
series1.ticks.template.set(&quot;visible&quot;, false);&lt;/p&gt;

&lt;p&gt;series1.slices.template.states.create(&quot;active&quot;, {&lt;br&gt;
  shiftRadius: 0,&lt;br&gt;
  stroke: am5.color(0x995522),&lt;br&gt;
  strokeWidth: 5&lt;br&gt;
});&lt;br&gt;
&lt;br&gt;
&lt;/p&gt;&lt;div id=&quot;chartdiv2&quot;&gt;&lt;/div&gt;&lt;br&gt;
]}

&lt;p&gt;Download site:&lt;br&gt;
&lt;a rel=&quot;nofollow&quot; href=&quot;https://www.amcharts.com/download/&quot;&gt;https://www.amcharts.com/download/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Download files:&lt;br&gt;
&lt;a rel=&quot;nofollow&quot; href=&quot;https://www.amcharts.com/dl/amcharts5/&quot;&gt;https://www.amcharts.com/dl/amcharts5/&lt;/a&gt;&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6983/how-can-we-integrate-amcharts-5-in-efficy-12</guid>
<pubDate>Wed, 04 Oct 2023 08:32:26 +0000</pubDate>
</item>
<item>
<title>Can we add a not standard translation for a lookup value ?</title>
<link>https://overflow.efficy.io/?qa=6939/can-we-add-a-not-standard-translation-for-a-lookup-value</link>
<description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;Can I had a translation in IT (Italian) for my custom lookup?&lt;/p&gt;

&lt;p&gt;The &quot;Add Langage Field&quot; of the designer doesn't offer IT as a choice for translation. Can I do it in another way? Or trought SQL?&lt;/p&gt;

&lt;p&gt;Thanks in advance.&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6939/can-we-add-a-not-standard-translation-for-a-lookup-value</guid>
<pubDate>Tue, 18 Jul 2023 11:33:09 +0000</pubDate>
</item>
<item>
<title>Send file with AJAX and method POST from a new page with a connected user</title>
<link>https://overflow.efficy.io/?qa=6540/send-file-with-ajax-method-post-from-page-with-connected-user</link>
<description>&lt;p&gt;Hi all,&lt;/p&gt;

&lt;p&gt;I try to create a new page for a connect user. but I don't know why, I can't send an ajax request with a file parameter.&lt;/p&gt;

&lt;p&gt;when I test my code without select a file in my html form and submit, all is good, a log file is created and this console log message : &quot;value : undefined&quot; appear (it's undefined cause I don't give a file)&lt;/p&gt;

&lt;p&gt;But when I select a file, I haven't file log created and an empty message in the console.&lt;/p&gt;

&lt;p&gt;I don't understand why I couldn't send a file from ajax ?  &lt;/p&gt;

&lt;p&gt;here my html code : &lt;/p&gt;

&lt;pre&gt;&lt;code&gt;&amp;lt;%LoadMacros(&quot;MacroDesktop&quot;)%&amp;gt;
&amp;lt;html&amp;gt;
&amp;lt;head&amp;gt;
    &amp;lt;%UseScript('js/config/require.config.js', fixedpath=T, data-custombase='%%GetCustomBase()', data-dealerbase='%%GetDealerBase()')%&amp;gt;
    &amp;lt;%Macro('RequireConfigDealer', evaluate=T)%&amp;gt;
    &amp;lt;%Macro('RequireConfigCustom', evaluate=T)%&amp;gt;
    &amp;lt;%UseScript('../lib/js/vendor/require.js', fixedpath=T)%&amp;gt;
    &amp;lt;%UseScript(&quot;scripts/Base&quot;, fixedline=T)%&amp;gt;
    &amp;lt;%UseScript(&quot;custom/Custom&quot;, fixedline=T, ifexists=T)%&amp;gt;
    &amp;lt;script&amp;gt;
        function Loaded() {
            requirejs(['jquery'], function ($) {
                $('#upload').click(function () {
                    var url = 'dialog?_macrofile=MacroAjax&amp;amp;_macro=RunScript&amp;amp;file=test&amp;amp;func=myTest';
                    var element = document.getElementById(&quot;fileupload&quot;);
                    var myfiles = element.files;
                    var data = new FormData();
                    var i = 0;
                    for (i = 0; i &amp;lt; myfiles.length; i++) {
                        data.append('file' + i, myfiles[i]);
                    }

                    $.ajax({
                        url: url,
                        type: 'POST',
                        contentType: false,
                        data: data,
                        processData: false,
                        cache: false
                    }).done(function (msg) {
                        console.log(msg);
                        if (msg.match(&quot;class=\&quot;efficy-error\&quot;&quot;)) {
                            $('body').html(msg);
                        } else {
                            $('form').append(&quot;OK&quot;);
                        }
                    });
                });
            });
        }
    &amp;lt;/script&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body onload=&quot;Loaded()&quot;&amp;gt;
&amp;lt;form enctype=&quot;multipart/form-data&quot;&amp;gt;
    &amp;lt;input type=&quot;file&quot; name=&quot;fileupload&quot; id=&quot;fileupload&quot; /&amp;gt;&amp;lt;br&amp;gt;

    &amp;lt;button type=&quot;button&quot; id=&quot;upload&quot;&amp;gt;Upload&amp;lt;/button&amp;gt;
&amp;lt;/form&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;and here my serverscript file : &lt;/p&gt;

&lt;pre&gt;&lt;code&gt;/*
@import ReaderPOST from serverjs/ReaderPOST
*/

function myTest()
{
    strSaveTextFile(&quot;C:\\path\\myTest.txt&quot;, &quot;&quot;, false);
    var value = &quot;\ntest : &quot; + Request.argument('myArg') + &quot;\n&quot;;

    value += &quot;utf8Content :\n&quot; + Request.utf8Content + &quot;\n&quot;;

    ReaderPOST.init(Request.utf8Content);

    strSaveTextFile(&quot;C:\\EfficyWebServer\\myTest.txt&quot;, value, true);
    return &quot;value : &quot; + ReaderPOST.getValue(&quot;file0&quot;);
}
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Someone have an idea why my script isn't even executed (no file log =&amp;gt; function isn't exectued)&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;EDIT&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;I went a little further, and realized that what was causing the problem was the formData. When he is empty (no file selected) the function wanted is called but when he is not, I don't know what happen in the black box but my function isn't called.&lt;br&gt;
Someone know why ? It is an Efficy bug or intentionnal behavior ?&lt;/p&gt;

&lt;p&gt;Really thanks in advance for your help ! &lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6540/send-file-with-ajax-method-post-from-page-with-connected-user</guid>
<pubDate>Fri, 13 May 2022 14:11:30 +0000</pubDate>
</item>
<item>
<title>how change recent list information for companies into mobile application</title>
<link>https://overflow.efficy.io/?qa=6359/change-recent-list-information-companies-mobile-application</link>
<description>&lt;p&gt;I want to add into the recent view into mobile application more fields.&lt;br&gt;
so I updated into my custom the listCardDefinitions because decree fields are similar as the the informations displayed into the recent list.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;{
   &quot;entities&quot;:{
      &quot;Amou&quot;:{
         &quot;active&quot;:false,
         &quot;icon&quot;:&quot;coin-euro&quot;
      }
   },
   &quot;listCardDefinitions&quot;:{
      &quot;Amou&quot;:{
         &quot;default&quot;:[
            {
               &quot;field&quot;:&quot;NAME&quot;,
               &quot;spaces&quot;:13
            },
            {
               &quot;field&quot;:&quot;F_D_START&quot;,
               &quot;display&quot;:&quot;date&quot;
            },
            {
               &quot;field&quot;:&quot;R_F_KIND&quot;
            },
            {
               &quot;field&quot;:&quot;F_OBJECTIVE&quot;
            },
            {
               &quot;field&quot;:&quot;F_HEAD&quot;
            },
            {
               &quot;field&quot;:&quot;F_HAND&quot;
            },
            {
               &quot;field&quot;:&quot;F_BODY&quot;
            },
            {
               &quot;field&quot;:&quot;F_FOOT&quot;
            },
            {
               &quot;field&quot;:&quot;F_FALL&quot;
            },
            {
               &quot;field&quot;:&quot;F_OTHER&quot;
            }
         ]
      },
      &quot;Comp&quot;:{
         &quot;default&quot;:[
            {
               &quot;field&quot;:&quot;NAME&quot;,
               &quot;template&quot;:&quot;#NAME#&quot;
            },
            {
               &quot;field&quot;:&quot;PHONE1&quot;,
               &quot;display&quot;:&quot;phone&quot;,
               &quot;spaces&quot;:7
            },
            {
               &quot;field&quot;:&quot;EMAIL1&quot;,
               &quot;display&quot;:&quot;email&quot;,
               &quot;spaces&quot;:8
            },
            {
               &quot;field&quot;:[
                  &quot;STREET&quot;,
                  &quot;BUILDING&quot;,
                  &quot;CITY&quot;
               ],
               &quot;template&quot;:&quot;#STREET# #BUILDING#, #CITY#&quot;,
               &quot;display&quot;:&quot;map&quot;,
               &quot;forceLabel&quot;:&quot;Address&quot;,
               &quot;spaces&quot;:8
            },
            {
               &quot;field&quot;:&quot;POSTCODE&quot;,
               &quot;spaces&quot;:8
            },
            {
               &quot;field&quot;:&quot;F_ERP_CODE&quot;,
               &quot;spaces&quot;:8
            },
            {
               &quot;field&quot;:&quot;F_CODE&quot;
            }
         ],
         &quot;_params&quot;:{
            &quot;search&quot;:{
               &quot;queryview&quot;:99999017
            }
         }
      }
   },
   &quot;entityRelations&quot;:{
      &quot;Amou&quot;:&quot;User,Cont,Comp&quot;
   }
}
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Is that the good way to do that ?&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://overflow.efficy.io/?qa=blob&amp;amp;qa_blobid=17555084666499838911&quot; alt=&quot;enter image description here&quot;&gt;&lt;br&gt;
the &lt;strong&gt;F&lt;em&gt;ERP&lt;/em&gt;CODE&lt;/strong&gt; and &lt;strong&gt;F_CODE&lt;/strong&gt; are not displayed.&lt;/p&gt;

&lt;p&gt;Any ideas ?&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6359/change-recent-list-information-companies-mobile-application</guid>
<pubDate>Thu, 18 Nov 2021 16:53:01 +0000</pubDate>
</item>
<item>
<title>Extranet - Notification per email for the customers ?</title>
<link>https://overflow.efficy.io/?qa=6214/extranet-notification-per-email-for-the-customers</link>
<description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;Some of my customers do not receive an email when a new information is added to an incident on the Extranet.&lt;/p&gt;

&lt;p&gt;How can they control the notifications per email from the extranet?&lt;/p&gt;

&lt;p&gt;Thanks for your answer,&lt;/p&gt;

&lt;p&gt;Best regards,&lt;/p&gt;

&lt;p&gt;Aurélie&lt;/p&gt;
</description>
<category>How to</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6214/extranet-notification-per-email-for-the-customers</guid>
<pubDate>Tue, 06 Jul 2021 12:23:29 +0000</pubDate>
</item>
<item>
<title>Efficy 12.0 MacroEditS.txt where is the code of JsScriptsTRW.Cont and JsScriptsTRW.Comp ?</title>
<link>https://overflow.efficy.io/?qa=6090/efficy-macroedits-where-code-jsscriptstrw-cont-jsscriptstrw</link>
<description>&lt;p&gt;Dear all,&lt;/p&gt;

&lt;p&gt;I was checking custom of a customer to migrate them to Efficy 12.0 and I remarked that the MacroEditS.txt following macros have disappeared : &lt;br&gt;
- JsScriptsTRW.Cont&lt;br&gt;
- JsScriptsTRW.Comp&lt;/p&gt;

&lt;p&gt;I search where the code has been moved to (editView/ Commands) but I could not find it.&lt;/p&gt;

&lt;p&gt;Can you please point me to the right direction ?&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6090/efficy-macroedits-where-code-jsscriptstrw-cont-jsscriptstrw</guid>
<pubDate>Fri, 14 May 2021 08:00:47 +0000</pubDate>
</item>
<item>
<title>Read-only users (licenses) can be use Efficy App (mobile application)?</title>
<link>https://overflow.efficy.io/?qa=6032/read-only-users-licenses-can-use-efficy-mobile-application</link>
<description>&lt;p&gt;Read-only users (licenses) can be use Efficy App?&lt;/p&gt;
</description>
<category>Efficy Installation/Settings</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6032/read-only-users-licenses-can-use-efficy-mobile-application</guid>
<pubDate>Thu, 15 Apr 2021 11:30:54 +0000</pubDate>
</item>
<item>
<title>Can we add a field from PUBL_CONT in the free_field_x for the flexmail ?</title>
<link>https://overflow.efficy.io/?qa=5772/can-add-field-from-publcont-the-freefieldx-for-flexmail</link>
<description>&lt;p&gt;Can we add a field from &lt;code&gt;PUBL_CONT&lt;/code&gt; in the &lt;code&gt;free_field_x&lt;/code&gt; for the flexmail ?&lt;/p&gt;
</description>
<category>Efficy Integrations</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=5772/can-add-field-from-publcont-the-freefieldx-for-flexmail</guid>
<pubDate>Wed, 16 Dec 2020 18:34:14 +0000</pubDate>
</item>
<item>
<title>Efficy 11.3 - 23072 - Auto Change not working</title>
<link>https://overflow.efficy.io/?qa=5755/efficy-11-3-23072-auto-change-not-working</link>
<description>&lt;p&gt;In Designer the fields are configured as follows :&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://overflow.efficy.io/?qa=blob&amp;amp;qa_blobid=14175963359929660565&quot; alt=&quot;Config&quot;&gt;&lt;/p&gt;

&lt;p&gt;In Efficy 2012 it worked fine, but now in the new 11.3 the auto-fill in of the fields next to the dropdowns doesnt work anymore. Is this a known issue, or do we need to do some custom to activate this ? &lt;/p&gt;

&lt;p&gt;Efficy 11.3 - 23072&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://overflow.efficy.io/?qa=blob&amp;amp;qa_blobid=4674121593796522455&quot; alt=&quot;enter image description here&quot;&gt;&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=5755/efficy-11-3-23072-auto-change-not-working</guid>
<pubDate>Fri, 11 Dec 2020 08:36:22 +0000</pubDate>
</item>
<item>
<title>Efficy 11.3.23072 - When launching a Template from the document, quicksearch popup for selecting template doesn't appear</title>
<link>https://overflow.efficy.io/?qa=5738/launching-template-document-quicksearch-selecting-template</link>
<description>&lt;p&gt;&lt;img src=&quot;https://overflow.efficy.io/?qa=blob&amp;amp;qa_blobid=14932875319858787804&quot; alt=&quot;enter image description here&quot;&gt;&lt;/p&gt;

&lt;p&gt;When trying to launch a Template from the document, the quicksearch popup for selecting the template doesn't appear. The spinner spins for a second, like he should, no errors in console or nothing in network debugging either.&lt;/p&gt;

&lt;p&gt;It's not custom folder related.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Is there something in the Database that can influence this ?&lt;/strong&gt;&lt;/p&gt;
</description>
<category>Database</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=5738/launching-template-document-quicksearch-selecting-template</guid>
<pubDate>Wed, 09 Dec 2020 11:37:15 +0000</pubDate>
</item>
<item>
<title>Designer or Efficy user Switch or replacement</title>
<link>https://overflow.efficy.io/?qa=5420/designer-or-efficy-user-switch-or-replacement</link>
<description>&lt;p&gt;Dear all,&lt;/p&gt;

&lt;p&gt;A customer asked if there is a functionality in Efficy/Designer to switch users. For instance a user leave the customer company and the customer wants to replace a new user by this leaving user.&lt;br&gt;
This means that all records created or secured by the old user should be replaced by the new user.&lt;/p&gt;

&lt;p&gt;In Efficy Standard, I could not find such functionality. Does any one has done something similar?&lt;/p&gt;

&lt;p&gt;The first Idea I had is to reuse the &quot;Old&quot; user rename it and change its password for the new user. But the customer wants to keep track of the historical's changes done by the old user.&lt;/p&gt;
</description>
<category>Efficy Designer (Conficy)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=5420/designer-or-efficy-user-switch-or-replacement</guid>
<pubDate>Mon, 04 May 2020 13:54:42 +0000</pubDate>
</item>
<item>
<title>API calls to a test environment reflects request body?</title>
<link>https://overflow.efficy.io/?qa=4025/api-calls-to-a-test-environment-reflects-request-body</link>
<description>&lt;p&gt;Hi,&lt;/p&gt;

&lt;p&gt;I've been trying to use the json api on a test environment. Every time I send a request, it just reflects the json body I sent back to me instead of the data I request.&lt;/p&gt;

&lt;p&gt;I use this url: {testenvironment}/crm/json &lt;/p&gt;

&lt;p&gt;These are the request headers: &lt;br&gt;
&lt;img src=&quot;https://overflow.efficy.com/?qa=blob&amp;amp;qa_blobid=2203283872685182108&quot; alt=&quot;enter image description here&quot;&gt;&lt;/p&gt;

&lt;p&gt;These are the response headers:&lt;br&gt;
&lt;img src=&quot;https://overflow.efficy.com/?qa=blob&amp;amp;qa_blobid=9542841644501376705&quot; alt=&quot;enter image description here&quot;&gt;&lt;/p&gt;

&lt;p&gt;I have a feeling I'm missing something obvious.&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4025/api-calls-to-a-test-environment-reflects-request-body</guid>
<pubDate>Tue, 26 Mar 2019 11:07:21 +0000</pubDate>
</item>
<item>
<title>NOMAD Server needs?</title>
<link>https://overflow.efficy.io/?qa=3962/nomad-server-needs</link>
<description>&lt;p&gt;What are the current system requirements for a NOMAD DB to set up at a customer.&lt;/p&gt;

&lt;p&gt;Windows version&lt;br&gt;
SQL version&lt;br&gt;
GB disk&lt;br&gt;
GB DB&lt;br&gt;
and so on...&lt;/p&gt;

&lt;p&gt;As Efficy changes I'm looking at the latest specs.&lt;/p&gt;

&lt;p&gt;thanks in advance&lt;/p&gt;
</description>
<category>IT</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3962/nomad-server-needs</guid>
<pubDate>Mon, 18 Feb 2019 14:29:09 +0000</pubDate>
</item>
<item>
<title>How to test LDAP Server Connection ?</title>
<link>https://overflow.efficy.io/?qa=3864/how-to-test-ldap-server-connection</link>
<description>&lt;p&gt;How can I test the LDAP connection from the Efficy server in order to check that the settings is correct in the Registry ?&lt;/p&gt;
</description>
<category>Efficy Installation/Settings</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3864/how-to-test-ldap-server-connection</guid>
<pubDate>Fri, 18 Jan 2019 13:34:28 +0000</pubDate>
</item>
<item>
<title>Differences between &quot;setUserSecurity&quot; and the combination of &quot;setSecurityUsers&quot; + &quot;postSecurity &quot; (with securitylist)</title>
<link>https://overflow.efficy.io/?qa=3833/setusersecurity-setsecurityusers-postsecurity-securitylist</link>
<description>&lt;p&gt;Hello Efficy Team, &lt;/p&gt;

&lt;p&gt;I would like to know the difference between &quot;setUserSecurity&quot; and &quot;setSecurityUsers&quot; + &quot;postSecurity &quot; (with securitylist).&lt;/p&gt;

&lt;p&gt;As I understand from from the documentation, &quot;SetSecurityUsers&quot; add user with their default securities (defined in conficy) and &quot;postSecurity&quot; is the function to apply those security to the record (but what if we don't call postSecurity ? What append ?). I never used it, I am not even sure I understand it correctly.&lt;/p&gt;

&lt;p&gt;I saw the new &quot;securitylist&quot; provided in Efficy 11.2. Could the R&amp;amp;D provide an exemple ? &lt;/p&gt;

&lt;p&gt;Thanks a lot, &lt;/p&gt;

&lt;p&gt;Loïc&lt;/p&gt;
</description>
<category>WorkFlow / Serverscript</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3833/setusersecurity-setsecurityusers-postsecurity-securitylist</guid>
<pubDate>Tue, 08 Jan 2019 13:39:29 +0000</pubDate>
</item>
<item>
<title>OpenUrlSecure How can I get the response body when not success</title>
<link>https://overflow.efficy.io/?qa=3731/openurlsecure-how-can-get-the-response-body-when-not-success</link>
<description>&lt;p&gt;Hi, &lt;/p&gt;

&lt;p&gt;apparently, the response.body of a openUrlSecure call is empty when the success != true.&lt;br&gt;
is that a feature or an anomaly?&lt;/p&gt;

&lt;p&gt;It seems that the body is well filled when success = true;&lt;/p&gt;

&lt;p&gt;point is the api i am requesting send me an error message in the body (checked it with postman)&lt;/p&gt;

&lt;p&gt;Do I have a way to workaround this?&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3731/openurlsecure-how-can-get-the-response-body-when-not-success</guid>
<pubDate>Tue, 11 Dec 2018 10:59:58 +0000</pubDate>
</item>
<item>
<title>Solve a &quot;older version of Efficy Sidebar [...]&quot; cannot be removed during sidebar MSI installation</title>
<link>https://overflow.efficy.io/?qa=3649/version-efficy-sidebar-cannot-removed-sidebar-installation</link>
<description>&lt;p&gt;During the MSI installation of the sidebar, it is quite rare, but you can unfortunately encounter that kind of error : &lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://overflow.efficy.com/?qa=blob&amp;amp;qa_blobid=3753520437599691194&quot; alt=&quot;sidebar_error_screenshot&quot;&gt;&lt;/p&gt;

&lt;p&gt;This error is particularly annoying because even if you uninstall any previous sidebar installation, you will most probably still be blocked at this step.&lt;br&gt;
That situation is most probably caused by a corrupted registry regarding sidebar components.&lt;/p&gt;
</description>
<category>Errors</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3649/version-efficy-sidebar-cannot-removed-sidebar-installation</guid>
<pubDate>Fri, 09 Nov 2018 08:29:32 +0000</pubDate>
</item>
<item>
<title>Efficy 10 SP+ Installation at customer - Firewall configuration ?</title>
<link>https://overflow.efficy.io/?qa=2976/efficy-10-sp-installation-customer-firewall-configuration</link>
<description>&lt;p&gt;Dear all,&lt;/p&gt;

&lt;p&gt;I have a very strange issu at a customer, I have installed Efficy and it seems working (on HTTPS) I can logon, consult entity, edit entities and modify them ... but I cannot delete it, I got the following error message ... which is not an Efficy Error message &lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://overflow.efficy.com/?qa=blob&amp;amp;qa_blobid=9412131132542671266&quot; alt=&quot;Forbidden Access&quot;&gt;&lt;/p&gt;

&lt;p&gt;if I remove the &quot;javascript:top.opener.ShowDesktop(true);top.close()&quot; from the URL it is working&lt;/p&gt;

&lt;p&gt;I would like to know if there is any special rules / Ports on a NetWork Firewall or any other NetWork device that should be setup for Efficy to work properly&lt;/p&gt;

&lt;p&gt;PS: I have also issue when adding Widget to the Main page, the issue is also a 403 Forbidden but in this case I don't have any Javascript in the URL&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://overflow.efficy.com/?qa=blob&amp;amp;qa_blobid=1304690969583643178&quot; alt=&quot;Widget Adding Error&quot;&gt;&lt;/p&gt;
</description>
<category>Efficy Installation/Settings</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=2976/efficy-10-sp-installation-customer-firewall-configuration</guid>
<pubDate>Wed, 14 Mar 2018 18:19:32 +0000</pubDate>
</item>
<item>
<title>Align Sections in edit forms (with flex)</title>
<link>https://overflow.efficy.io/?qa=2962/align-sections-in-edit-forms-with-flex</link>
<description>&lt;p&gt;Having several sections in a edit form can quickly become (lame joke alert) a pain in the sass. Especially if you are having section with different sizes.&lt;/p&gt;

&lt;p&gt;Since foundation allows you to use flex you can simply add this in your EfficyCustom.css : &lt;/p&gt;

&lt;pre&gt;&lt;code&gt;  #tab-fields {
    display: flex;
    flex-wrap: wrap;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;this will automatically display sections verticaly aligned under the longest section of the previous line. this is imho a lot easier to deal with by harmonizing the 2 or 3 columns display.&lt;/p&gt;

&lt;p&gt;Thanks to Ben for this code. please enjoy.&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=2962/align-sections-in-edit-forms-with-flex</guid>
<pubDate>Tue, 27 Feb 2018 17:20:57 +0000</pubDate>
</item>
<item>
<title>Updating Linked Product lines in Oppo Edit &gt; OK in IE, not in Other browsers</title>
<link>https://overflow.efficy.io/?qa=2937/updating-linked-product-lines-oppo-edit-not-other-browsers</link>
<description>&lt;p&gt;I keep getting problems with the following.&lt;/p&gt;

&lt;p&gt;When a field in edit of an oppo is changed, I want to update linked products directly.&lt;/p&gt;

&lt;p&gt;The following 2 pieces each work on IE, but not in Firefox or Chrome, there the fields in the product grid aren't up to date...&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;function updateSelectedProducts(valueInput,type){
            var scriptFile = &quot;OppoScripts&quot;;
            var scriptFunc = &quot;updateProducts&quot;;
            var extraParam = format(&quot;&amp;amp;editHandle={editHandle}&amp;amp;value=$0&amp;amp;type=$1&quot;,valueInput,type);
            CebPerform(&quot;CEB_STATE&quot;);
            $.ajax({
                url: format(&quot;dialog?_macrofile=MacroAjax&amp;amp;_macro=RunScript&amp;amp;File=$0&amp;amp;Func=$1&quot;, scriptFile, scriptFunc),
                data: extraParam,
                async: false
            }).done(function (result) {
                console.log('updateSelectedProducts A');
            });
        }

        function updateSelectedProductsOLD(valueInput,type){
            var URL = format(&quot;dialog?_macrofile=MacroAjax&amp;amp;_macro=RunScript&amp;amp;file=OppoScripts;libjson&amp;amp;func=updateProducts&amp;amp;editHandle={editHandle}&amp;amp;value=$0&amp;amp;type=$1&quot;,valueInput,type);
            CebPerform(&quot;CEB_STATE&quot;);
            $.ajax({
                url: URL,
                type: &quot;GET&quot;,
                success: function (html, textStatus, jqXHR) {
                    if (IsNotEfficyErrorHtml(html, function(errorMsg) {alert(errorMsg)})) {
                        console.log('updateSelectedProducts B');
                    }
                }
            });
        }
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;I Really need this to work on all browsers. Or is there a better way to do this ?&lt;/p&gt;

&lt;p&gt;My Serverscript is the following : &lt;/p&gt;

&lt;pre&gt;&lt;code&gt;function updateProducts(){
var editHandle = StrToIntDef(Request.Argument(&quot;editHandle&quot;), 0);
var Value = Request.Argument(&quot;value&quot;);
var type = Request.Argument(&quot;type&quot;);

var ProdDataSet = Database.GetDetailDataSet(editHandle, ntProd);
ProdDataSet.First
var updated = 0;
while (!ProdDataSet.Eof) {
    ProdDataSet.Edit
    var K_Product = ProdDataSet.FieldByName('K_PRODUCT').AsFloat
    var K_Relation = ProdDataSet.FieldByName('K_RELATION').AsInteger

    var Price = ProdDataSet.FieldByName('PRICE').AsFloat
    var Price_USD = ProdDataSet.FieldByName('F_PRICE_USD').AsFloat

    var F_TYPE = ProdDataSet.FieldByName('F_TYPE').AsInteger
    if (F_TYPE == type){
        updated++;
        ProdDataSet.FieldByName('QUANTITY').AsFloat =  parseFloat(Value)   //Value
        ProdDataSet.FieldByName('F_TOTAL_USD').AsFloat =  parseFloat(Value) * Price_USD;
        ProdDataSet.FieldByName('TOTAL').AsFloat =  parseFloat(Value) * Price;
    }
    ProdDataSet.Next
}   
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;}&lt;/p&gt;
</description>
<category>WorkFlow / Serverscript</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=2937/updating-linked-product-lines-oppo-edit-not-other-browsers</guid>
<pubDate>Thu, 15 Feb 2018 14:44:50 +0000</pubDate>
</item>
<item>
<title>Set tabs position on top of category Efficy 10</title>
<link>https://overflow.efficy.io/?qa=2925/set-tabs-position-on-top-of-category-efficy-10</link>
<description>&lt;p&gt;Hi everybody,&lt;/p&gt;

&lt;p&gt;In Efficy 2012, to set tabs on top of a category, EfficyCustom.css had to be modified like this :&lt;br&gt;
div.PanelButtons { top:0 !important; } &lt;br&gt;
div.PanelContent { top:21 !important;} &lt;br&gt;
div.CategoryDiv { height:1000 !important; } &lt;br&gt;
div.panelDiv { height:1000 !important; } &lt;/p&gt;

&lt;p&gt;How can I do to have the same result with Efficy 10?&lt;/p&gt;

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

&lt;p&gt;Dimitri Cousew&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=2925/set-tabs-position-on-top-of-category-efficy-10</guid>
<pubDate>Sun, 11 Feb 2018 02:14:28 +0000</pubDate>
</item>
<item>
<title>How to use the $('#modal-host').foundation('reveal', 'open'); as waiting overlay during loading.</title>
<link>https://overflow.efficy.io/?qa=1874/modal-host-foundation-reveal-waiting-overlay-during-loading</link>
<description>&lt;p&gt;Hello &lt;br&gt;
I need to have a waiting overlay when loading few customized pages.&lt;/p&gt;

&lt;p&gt;I decided to use the $('#modal-host').foundation('reveal', 'open'); but first problem it's generated only after my load. So to late and it seem that calling the  $('#modal-host').foundation('reveal', 'close'); doesn't work. No way to close it automatically&lt;/p&gt;

&lt;p&gt;so 2 questions :&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;It is possible to use it before loading ?&lt;/li&gt;
&lt;li&gt;what is the best way to open this modal when I launch an ajax call and close it when ajax respond.&lt;/li&gt;
&lt;/ul&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=1874/modal-host-foundation-reveal-waiting-overlay-during-loading</guid>
<pubDate>Thu, 15 Sep 2016 16:10:45 +0000</pubDate>
</item>
<item>
<title>emails from Efficy have no Outlook signature</title>
<link>https://overflow.efficy.io/?qa=1605/emails-from-efficy-have-no-outlook-signature</link>
<description>&lt;p&gt;When a mail is composed from Efficy ( Publications or just a notification ),&lt;br&gt;
no signature is added in Outlook.&lt;/p&gt;

&lt;p&gt;Can this be solved ?&lt;/p&gt;
</description>
<category>How to</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=1605/emails-from-efficy-have-no-outlook-signature</guid>
<pubDate>Thu, 12 May 2016 09:16:08 +0000</pubDate>
</item>
<item>
<title>How do the badges work?</title>
<link>https://overflow.efficy.io/?qa=1291/how-do-the-badges-work</link>
<description>&lt;p&gt;Hi,&lt;/p&gt;

&lt;p&gt;Could someone tell me how the badges work? Support could not tell me.&lt;br&gt;
Blue badges with numbers.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Task:  What triggers the badge (Undone, delegated etc.)&lt;/li&gt;
&lt;li&gt;Cases:  idem&lt;/li&gt;
&lt;li&gt;Timesheet:  idem&lt;/li&gt;
&lt;/ul&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=1291/how-do-the-badges-work</guid>
<pubDate>Thu, 28 Jan 2016 10:31:34 +0000</pubDate>
</item>
<item>
<title>Efficy Drive - overwrite!</title>
<link>https://overflow.efficy.io/?qa=502/efficy-drive-overwrite</link>
<description>&lt;p&gt;Dear,&lt;/p&gt;

&lt;p&gt;If I have a document in my Efficy Drive and an other users has the same document in his Efficy Drive.&lt;br&gt;
What happens if we both modify the document at the same time?&lt;br&gt;
Will it be merged or overwritten?&lt;/p&gt;

&lt;p&gt;gr&lt;br&gt;
Erwin&lt;/p&gt;
</description>
<category>WorkFlow / Serverscript</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=502/efficy-drive-overwrite</guid>
<pubDate>Thu, 09 Jul 2015 11:18:52 +0000</pubDate>
</item>
<item>
<title>CallDotNetLibraryFunction brokes when .Net library function changes or is renamed!</title>
<link>https://overflow.efficy.io/?qa=475/calldotnetlibraryfunction-library-function-changes-renamed</link>
<description>&lt;p&gt;The .net teams changed the name and the signature of a function, and therefore, efficy was ,not able to call the function, once renaming it to its origiinal name, it word fine again.&lt;/p&gt;

&lt;p&gt;do you have any explanation?&lt;br&gt;
Thanks in advance,&lt;/p&gt;
</description>
<category>WorkFlow / Serverscript</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=475/calldotnetlibraryfunction-library-function-changes-renamed</guid>
<pubDate>Fri, 26 Jun 2015 13:48:15 +0000</pubDate>
</item>
<item>
<title>Efficy drive not configure</title>
<link>https://overflow.efficy.io/?qa=258/efficy-drive-not-configure</link>
<description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;I'm trying to set Efficy Drive in side bar but once i click &quot;Update System Cache&quot; or &quot;Synchronize now&quot; i got message &quot;Efficy Drive is not configured&quot; (i attached snapshot for this). Please advise.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;http://%3CHTML%3E%3C/HTML%3E&quot; alt=&quot;Error Message&quot;&gt;&lt;/p&gt;

&lt;p&gt;Thank you.&lt;/p&gt;
</description>
<category>Other</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=258/efficy-drive-not-configure</guid>
<pubDate>Tue, 10 Mar 2015 11:47:07 +0000</pubDate>
</item>
<item>
<title>how to set Efficy to synchronize in efficy drive</title>
<link>https://overflow.efficy.io/?qa=241/how-to-set-efficy-to-synchronize-in-efficy-drive</link>
<description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;Is there a documentation on Efficydrive configuration?&lt;/p&gt;

&lt;p&gt;I have create a folder on my PC and set its path in my sidebar. click  Update system cache and syncrhonize now.&lt;br&gt;
3 folders has been created on my PC. &lt;br&gt;
Then I have copied a XLS document in Efficy drive folder/document and synchronize again. &lt;/p&gt;

&lt;p&gt;But nothing append.&lt;/p&gt;

&lt;p&gt;What is wrong or missing?&lt;/p&gt;

&lt;p&gt;Thanks and Regards&lt;br&gt;
Anne&lt;/p&gt;
</description>
<category>Efficy Developers</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=241/how-to-set-efficy-to-synchronize-in-efficy-drive</guid>
<pubDate>Mon, 02 Mar 2015 17:27:37 +0000</pubDate>
</item>
</channel>
</rss>