<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Efficy Overflow Q&amp;A - Recent questions tagged 12-0</title>
<link>https://overflow.efficy.io/?qa=tag/12-0</link>
<description>Powered by Question2Answer</description>
<item>
<title>Disable the chat access from Effcy's desktop</title>
<link>https://overflow.efficy.io/?qa=6768/disable-the-chat-access-from-effcys-desktop</link>
<description>&lt;p&gt;Hello,&lt;br&gt;
We need to disable the chat access from Effcy's desktop.&lt;br&gt;
Our clients don't need to contact Efficy support team.&lt;br&gt;
It's urgent.&lt;/p&gt;

&lt;p&gt;Thank you&lt;br&gt;
Dimitri&lt;/p&gt;
</description>
<category>Other</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6768/disable-the-chat-access-from-effcys-desktop</guid>
<pubDate>Mon, 28 Nov 2022 06:33:29 +0000</pubDate>
</item>
<item>
<title>Efficy 12.0 TFTPClient documentation ?</title>
<link>https://overflow.efficy.io/?qa=6550/efficy-12-0-tftpclient-documentation</link>
<description>&lt;p&gt;Do we have any documentation of the TFTPClient object (methods and properties), we would like to use it to download and upload files in order to synchronize Efficy Entreprise with an external tool.&lt;/p&gt;
</description>
<category>Efficy Integrations</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6550/efficy-12-0-tftpclient-documentation</guid>
<pubDate>Wed, 18 May 2022 13:27:09 +0000</pubDate>
</item>
<item>
<title>Efficy 2021: Efficy JSON font file is missing</title>
<link>https://overflow.efficy.io/?qa=6517/efficy-2021-efficy-json-font-file-is-missing</link>
<description>&lt;p&gt;We remarked that in the latest release of Efficy 2021, the file : C:\inetpub\wwwroot\12.0\lib\fonts\ selection.json&lt;/p&gt;

&lt;p&gt;Without this file we cannot customized the Efficy font set by adding new icons for instance from &lt;a rel=&quot;nofollow&quot; href=&quot;https://icomoon.io/&quot;&gt;icomoon.io&lt;/a&gt;, is it possible to add back this file in the next release ?&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6517/efficy-2021-efficy-json-font-file-is-missing</guid>
<pubDate>Wed, 27 Apr 2022 09:06:39 +0000</pubDate>
</item>
<item>
<title>Efficy 12.0 user securities list is missing options</title>
<link>https://overflow.efficy.io/?qa=6357/efficy-12-0-user-securities-list-is-missing-options</link>
<description>&lt;p&gt;I remarked that in Efficy 2021 the list of securities options is different from Efficy 11.3 version when linking a user in the securities. Is there any reason for this change ? &lt;/p&gt;

&lt;p&gt;PS : this can raise errors while migrating customers from previous version to Efficy 2021, so developper will need to review all serverscripts/serverJS where the function &quot;Efficy.setUserSecurity&quot; is used&lt;/p&gt;

&lt;p&gt;Efficy 2021 security list option for user&lt;br&gt;
&lt;img src=&quot;https://overflow.efficy.io/?qa=blob&amp;amp;qa_blobid=16992724239585024457&quot; alt=&quot;Efficy 2021 security list option for user&quot;&gt;&lt;/p&gt;

&lt;p&gt;Efficy 11.3 security list option for user&lt;br&gt;
&lt;img src=&quot;https://overflow.efficy.io/?qa=blob&amp;amp;qa_blobid=15338258538145982642&quot; alt=&quot;Efficy 11.3 security list option for user&quot;&gt;&lt;/p&gt;
</description>
<category>WorkFlow / Serverscript</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6357/efficy-12-0-user-securities-list-is-missing-options</guid>
<pubDate>Wed, 17 Nov 2021 11:36:39 +0000</pubDate>
</item>
<item>
<title>Export to excel on the extranet (migration from 10sp2+ to 12.0)</title>
<link>https://overflow.efficy.io/?qa=6320/export-to-excel-on-the-extranet-migration-from-10sp2-to-12-0</link>
<description>&lt;p&gt;Hello Everyone,&lt;/p&gt;

&lt;p&gt;I need to migrate the  function 'export to excel' on the extranet.(10SP2+ to 12.00)&lt;/p&gt;

&lt;p&gt;On 10SP2, The function used to generate the excel was : &lt;/p&gt;

&lt;pre&gt;&lt;code&gt;&amp;lt;%GetDataGrid(queryhandle=&quot;%%GetArgument('queryhandle')&quot;, xls=true,
 translate=true)%&amp;gt;`
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;(=&amp;gt;it generates an html page in 12.00)&lt;/p&gt;

&lt;p&gt;To migrate to 12.0:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;I changed the function to GetExportGrid:&lt;br&gt;
&amp;lt;%GetExportGrid(columndefs=&quot;macros/ExportColumns.txt&quot;, queryhandle@=&quot;queryhandle&quot;, maxgridrows=-1, translate=T)%&amp;gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;I copied the standard ExportColumns.txt content to  extranet/macros/ExportColumns.txt.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;I send the columns names through url or form/post (as in standard version)&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;RESULT : an excel file is indeed created . However, header cells are wrongly named ExportColumn0..1..2,  and other cells are empty.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://overflow.efficy.io/?qa=blob&amp;amp;qa_blobid=4452596293622688549&quot; alt=&quot;example of the excel&quot;&gt;&lt;br&gt;
I do think that the problem comes from columndefs file which is not found. However, I did try multiple combinations but none worked.&lt;/p&gt;

&lt;p&gt;Have you ever implemented that function on the extranet(11.00+), or do you have any idea how I could solve my problem?&lt;/p&gt;

&lt;p&gt;Thanks.&lt;/p&gt;

&lt;p&gt;Best regards.&lt;/p&gt;
</description>
<category>Extranet / HelpDesk</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6320/export-to-excel-on-the-extranet-migration-from-10sp2-to-12-0</guid>
<pubDate>Fri, 15 Oct 2021 08:59:23 +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>
</channel>
</rss>