<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Efficy Overflow Q&amp;A - Recent questions and answers in Efficy design guidelines</title>
<link>https://overflow.efficy.io/?qa=qa/design-guidelines</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>Answered: Default Date Field to Today's Date</title>
<link>https://overflow.efficy.io/?qa=6610/default-date-field-to-todays-date&amp;show=6624#a6624</link>
<description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;When you create a field within Efficy Designer, you have the possibility to select default value during the field creation.&lt;br&gt;
If your field is a Date or a Datetime, it should purpose you the Current date for default value.&lt;/p&gt;
</description>
<category>Efficy design guidelines</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6610/default-date-field-to-todays-date&amp;show=6624#a6624</guid>
<pubDate>Fri, 08 Jul 2022 13:25:37 +0000</pubDate>
</item>
<item>
<title>Answered: Efficy solution with Alcatel OXE</title>
<link>https://overflow.efficy.io/?qa=6415/efficy-solution-with-alcatel-oxe&amp;show=6416#a6416</link>
<description>&lt;p&gt;Hi David,&lt;/p&gt;

&lt;p&gt;With the Efficy sidebar installed, all devices compatible with TAPI can work.&lt;br&gt;
For the features, you can see them &lt;a rel=&quot;nofollow&quot; href=&quot;https://help.efficy.io/edn/admin/inst_allowsidebarphoneactions&quot;&gt;here&lt;/a&gt; (virtually anything with some customization)&lt;/p&gt;

&lt;p&gt;Kr,&lt;/p&gt;
</description>
<category>Efficy design guidelines</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6415/efficy-solution-with-alcatel-oxe&amp;show=6416#a6416</guid>
<pubDate>Wed, 29 Dec 2021 14:11:08 +0000</pubDate>
</item>
<item>
<title>Answered: Multiple entities editing in a single window in 11.1</title>
<link>https://overflow.efficy.io/?qa=6302/multiple-entities-editing-in-a-single-window-in-11-1&amp;show=6307#a6307</link>
<description>&lt;p&gt;Hi Alexander,&lt;/p&gt;

&lt;p&gt;It is quite complex to do so.&lt;br&gt;
For a basic implementation, you can check how the grid between Documents and Actions is done (in edit Docu).&lt;br&gt;
MacroEdit.txt&amp;gt;&amp;gt;EditEntityGridDocuActi&amp;gt;&amp;gt; &lt;a rel=&quot;nofollow&quot; href=&quot;https://help.efficy.io/edn/tags#GetEditNoDS&quot;&gt;&amp;lt;%GetEditNoDS%&amp;gt;&lt;/a&gt;&lt;/p&gt;

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

&lt;p&gt;If you have more questions you can send me an email,&lt;/p&gt;

&lt;p&gt;Kr&lt;/p&gt;
</description>
<category>Efficy design guidelines</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6302/multiple-entities-editing-in-a-single-window-in-11-1&amp;show=6307#a6307</guid>
<pubDate>Tue, 12 Oct 2021 10:25:43 +0000</pubDate>
</item>
<item>
<title>Answered: What is the best way to implement a dynamic form in consult mode depending on a status ?</title>
<link>https://overflow.efficy.io/?qa=6244/best-implement-dynamic-form-consult-mode-depending-status&amp;show=6246#a6246</link>
<description>&lt;p&gt;For my part, I will add a configuration column in your LK_STATUS table in order to save the id of the form to display in consult, and another one for the edit (if needed)&lt;/p&gt;

&lt;p&gt;When the consult page is loading you can load a serverscript in the ConsultSectionsForm of your entity in order to get the form id from the column added previously in LK_STATUS.&lt;/p&gt;

&lt;p&gt;This will work out of the box for Efficy 11.3 in consult because the ConsultSectionsForm macro is evaluated in EntitySection0/1/2 macros.&lt;/p&gt;

&lt;p&gt;But in Efficy 12.0 those macros do not evaluate the ConsultSectionsForm macro anymore, you may need to get the old code from Efficy 11.3 in order to add back the evaluate function tag&lt;/p&gt;

&lt;p&gt;something like this (I only show 1 macro, should be done on all macros EntitySection) : &lt;/p&gt;

&lt;pre&gt;&lt;code&gt;EntitySection0 {[
&amp;lt;%GetFormSections(form=&quot;%%Evaluate(|&amp;lt;%Macro('ConsultSectionsForm')%&amp;gt;|)&quot;, consulthandle@=&quot;ConsultHandle&quot;, fielddefs=&quot;FormFieldsConsult&quot;, start=0, end=0, noformbounds=T, nosectionbounds=T, class=&quot;%%Macro('ConsultSectionsClass0')&quot;)%&amp;gt;
]}
&lt;/code&gt;&lt;/pre&gt;
</description>
<category>Efficy design guidelines</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6244/best-implement-dynamic-form-consult-mode-depending-status&amp;show=6246#a6246</guid>
<pubDate>Mon, 02 Aug 2021 10:40:46 +0000</pubDate>
</item>
<item>
<title>Answered: How can I use &quot;Chart options&quot; / &quot;Series configuration&quot; in a Chart Widget?</title>
<link>https://overflow.efficy.io/?qa=6225/how-can-use-chart-options-series-configuration-chart-widget&amp;show=6229#a6229</link>
<description>&lt;p&gt;Here is an example for a pie chart, we remove the legends and we reformat the tooltips on the slices.&lt;/p&gt;

&lt;p&gt;For the documentation, cf the links in Kristof post.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Graphic Configuration&lt;/strong&gt;&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;{
   &quot;legend&quot;: {
      &quot;valueLabels&quot;: {
         &quot;text&quot;: &quot;&quot;
      }
   }
}
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;&lt;strong&gt;Series Configuration&lt;/strong&gt;&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;{
   &quot;ticks&quot;: {
      &quot;disabled&quot;: true
   },
   &quot;labels&quot;: {
      &quot;disabled&quot;: true
   },
   &quot;slices&quot;: {
      &quot;tooltipText&quot;: &quot;{category}: {value.value} € cases ({value.percent.formatNumber('#.00')}%)&quot;
   }
}
&lt;/code&gt;&lt;/pre&gt;
</description>
<category>Efficy design guidelines</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6225/how-can-use-chart-options-series-configuration-chart-widget&amp;show=6229#a6229</guid>
<pubDate>Tue, 13 Jul 2021 06:40:08 +0000</pubDate>
</item>
<item>
<title>Answered: In version 11.3, is it possible to have a single view of all Timesheets without classification by project?</title>
<link>https://overflow.efficy.io/?qa=5299/version-possible-timesheets-without-classification-project&amp;show=5341#a5341</link>
<description>&lt;p&gt;This is not possible without customization. Even with customization, it is not advised to change this standard behavior anyway.&lt;/p&gt;

&lt;p&gt;So if this is a customer question, just say No.&lt;/p&gt;
</description>
<category>Efficy design guidelines</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=5299/version-possible-timesheets-without-classification-project&amp;show=5341#a5341</guid>
<pubDate>Mon, 02 Mar 2020 11:46:17 +0000</pubDate>
</item>
<item>
<title>Answered: Display the current date in a word template</title>
<link>https://overflow.efficy.io/?qa=4919/display-the-current-date-in-a-word-template&amp;show=4920#a4920</link>
<description>&lt;p&gt;I don't think there is such a template tag, but maybe you can achieve this by providing the current date in an argument (and then use [$GetArgument])?&lt;br&gt;
Could be an interesting suggestion to R&amp;amp;D too.&lt;/p&gt;
</description>
<category>Efficy design guidelines</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4919/display-the-current-date-in-a-word-template&amp;show=4920#a4920</guid>
<pubDate>Tue, 15 Oct 2019 16:14:03 +0000</pubDate>
</item>
<item>
<title>Answered: Creation of dynamic lists in Efficy</title>
<link>https://overflow.efficy.io/?qa=4898/creation-of-dynamic-lists-in-efficy&amp;show=4907#a4907</link>
<description>&lt;p&gt;I implemented such a customization for a customer.&lt;br&gt;
It's based on &quot;template&quot; (segmentation) queries with parameters.&lt;br&gt;
Example : Contacts who subscribed to a newsletter, the newsletter being the parameter&lt;br&gt;
These queries are linked to a profile and the parameters can be changed for the profile.&lt;br&gt;
Example : Contacts who subscribed to THE newsletter ABC.&lt;br&gt;
You can use a query to feed a profile or to remove contacts.&lt;br&gt;
The profile is fed by a process runner (Cf. &lt;a rel=&quot;nofollow&quot; href=&quot;https://help.efficy.com/edn/projectguides/process_runner)&quot;&gt;https://help.efficy.com/edn/projectguides/process_runner)&lt;/a&gt;&lt;br&gt;
The refresh of the profile is also performed before the synchronization of the profile with Flexmail.&lt;/p&gt;

&lt;p&gt;It's quite a &quot;big&quot; customization.&lt;br&gt;
I'll try to sell it to the R&amp;amp;D.&lt;/p&gt;
</description>
<category>Efficy design guidelines</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4898/creation-of-dynamic-lists-in-efficy&amp;show=4907#a4907</guid>
<pubDate>Fri, 11 Oct 2019 13:47:08 +0000</pubDate>
</item>
</channel>
</rss>