The client-config Element"

From Documentation
m (correct highlight (via JWB))
 
(10 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
{{ZKConfigurationReferencePageHeader}}
 
{{ZKConfigurationReferencePageHeader}}
    * 1[[ZK_Configuration_Reference/zk.xml/The_client-config_Element/The_click-filter-delay_Element|The click-filter-delay Elemen]]
 
    * 2[[ZK_Configuration_Reference/zk.xml/The_client-config_Element/The_click-filter-delay_Element| The debug-js Element
 
    * 3[[ZK_Configuration_Reference/zk.xml/The_client-config_Element/The_click-filter-delay_Element|The disable-behind-modal Element
 
    * 4[[ZK_Configuration_Reference/zk.xml/The_client-config_Element/The_click-filter-delay_Element| The error-reload Element
 
          o 4.1 connection-type
 
          o 4.2 device-type
 
          o 4.3 error-code
 
          o 4.4 reload-uri
 
    * 5[[ZK_Configuration_Reference/zk.xml/The_client-config_Element/The_click-filter-delay_Element| The keep-across-visits Element
 
    * 6 The package Element
 
    * 7 The processing-prompt-delay Element
 
    * 8 The resend-delay Element
 
    * 9 The tooltip-delay Element
 
    * 10 Version History
 
  
 +
It is used to customize the behavior of ZK Client Engine. You might have multiple <code>client-config</code> elements in one <code>zk.xml</code>.
  
 +
<source lang="xml" >
 +
<client-config>
 +
    <click-filter-delay>0</click-filter-delay>
 +
    <debug-js>false</debug-js>
 +
    <disable-behind-modal>false</disable-behind-modal>
 +
    <error-reload>
 +
        <device-type>ajax</device-type>
 +
        <error-code>301</error-code>
 +
        <reload-uri></reload-uri>
 +
    </error-reload>
 +
    <keep-across-visits>true</keep-across-visits>
 +
    <processing-prompt-delay>900</processing-prompt-delay>
 +
    <tooltip-delay>800</tooltip-delay>
 +
    <resend-delay>9000</resend-delay>
 +
</client-config>
 +
</source>
 +
 +
{{ZKConfigurationReferenceHeadingToc}}
 
{{ZKConfigurationReferencePageFooter}}
 
{{ZKConfigurationReferencePageFooter}}

Latest revision as of 10:18, 19 January 2022


The client-config Element


It is used to customize the behavior of ZK Client Engine. You might have multiple client-config elements in one zk.xml.

 <client-config>
     <click-filter-delay>0</click-filter-delay>
     <debug-js>false</debug-js>
     <disable-behind-modal>false</disable-behind-modal>
     <error-reload>
         <device-type>ajax</device-type>
         <error-code>301</error-code>
         <reload-uri></reload-uri>
     </error-reload>
     <keep-across-visits>true</keep-across-visits>
     <processing-prompt-delay>900</processing-prompt-delay>
     <tooltip-delay>800</tooltip-delay>
     <resend-delay>9000</resend-delay>
 </client-config>




Last Update : 2022/01/19

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.