<?xml version="1.0" encoding="UTF-8" ?><!-- generator=Zoho Sites --><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><atom:link href="https://www.creatorscripts.com/blogs/tag/zohodevs/feed" rel="self" type="application/rss+xml"/><title>Creator Scripts. - Zoho Blogs #zohodevs</title><description>Creator Scripts. - Zoho Blogs #zohodevs</description><link>https://www.creatorscripts.com/blogs/tag/zohodevs</link><lastBuildDate>Fri, 27 Mar 2026 02:04:44 -0700</lastBuildDate><generator>http://zoho.com/sites/</generator><item><title><![CDATA[Update Phone Format (206) 800-1234 in Zoho Creator]]></title><link>https://www.creatorscripts.com/blogs/post/Update-Phone-Format-206-800-1234-in-Zoho-Creator</link><description><![CDATA[You can add the below script On Add On Validate or On Add On Success. Just replace the name of the input.Phone_additional field with the name of your ]]></description><content:encoded><![CDATA[<div class="zpcontent-container blogpost-container "><div data-element-id="elm_IijoQ1P4QvOqhitYKXptJQ" data-element-type="section" class="zpsection "><style type="text/css"></style><div class="zpcontainer-fluid zpcontainer"><div data-element-id="elm_nPihdnpzQQmSGIj2sgMfDw" data-element-type="row" class="zprow zprow-container zpalign-items- zpjustify-content- " data-equal-column=""><style type="text/css"></style><div data-element-id="elm_c-EB8IN9Q8iTIoviEI0iXg" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- "><style type="text/css"></style><div data-element-id="elm_coTBTvlrRFS_rRF2G-GbEw" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align- " data-editor="true"><div><p><span></span></p><p style="margin-bottom:22px;"><font face="Georgia, Times, serif" size="3"><br></font></p><p style="margin-bottom:22px;"><font face="Georgia, Times, serif" size="3">You can add the below script On Add On Validate or On Add On Success. Just replace the name of the input.Phone_additional field with the name of your phone field in your zoho form.</font></p><div><font face="Georgia, Times, serif" size="3">//Update Phone format</font></div><div><font face="Georgia, Times, serif" size="3">if ((input.Phone_additional.getAlphaNumeric().length() != 10) &amp;&amp; (input.Phone_additional != &quot;&quot;))</font></div><div><font face="Georgia, Times, serif" size="3">{</font></div><div><font face="Georgia, Times, serif" size="3">errors = List:String();</font></div><div><font face="Georgia, Times, serif" size="3">errors.add(&quot;Phone Number is not a 10 digit number.&quot;);</font></div><div></div><div><font face="Georgia, Times, serif" size="3">}</font></div><div><font face="Georgia, Times, serif" size="3">else if ((input.Phone_additional != &quot;&quot;) &amp;&amp; (input.Phone_additional.getAlphaNumeric().length() == 10))</font></div><div><font face="Georgia, Times, serif" size="3">{</font></div><div><font face="Georgia, Times, serif" size="3">input.Phone_additional = thisapp.Update.PhoneFormat(input.Phone_additional);</font></div><div><font face="Georgia, Times, serif" size="3">}</font></div><div><font face="Georgia, Times, serif" size="3">else</font></div><div><font face="Georgia, Times, serif" size="3">{</font></div><p style="margin-bottom:22px;"><font face="Georgia, Times, serif" size="3">}</font></p><p style="margin-bottom:22px;"><font face="Georgia, Times, serif" size="3">The script above calls a function to update the Phone string. You can name your function the same as the one in this example so you can only copy &amp; paste the script. If you name your function differently just make sure to adjust the function name in your script as well.</font></p><p></p></div></div>
</div><div data-element-id="elm_PZ9E5NGdRe-9R4LwY78arA" data-element-type="button" class="zpelement zpelem-button "><style></style><div class="zpbutton-container zpbutton-align-center "><style type="text/css"></style><a class="zpbutton-wrapper zpbutton zpbutton-type-primary zpbutton-size-md zpbutton-style-none " href="http://zoholibrary.creatorscripts.com/p/deluge-scripts-library" target="_blank"><span class="zpbutton-content">Access Code</span></a></div>
</div></div></div></div></div></div> ]]></content:encoded><pubDate>Wed, 31 Jan 2018 07:40:10 -0600</pubDate></item><item><title><![CDATA[Zoho Creator Hack: Specify OR or AND operators when setting criteria for displaying a view]]></title><link>https://www.creatorscripts.com/blogs/post/Zoho-Creator-Hack-Specify-OR- or-AND-operators-when-setting-criteria-for-displaying-a-view</link><description><![CDATA[Master the nuances of Zoho Creator views. Learn how to effectively use OR and AND operators to fine-tune criteria, ensuring you display only the most relevant data.]]></description><content:encoded><![CDATA[<div class="zpcontent-container blogpost-container "><div data-element-id="elm_eECjVUP9SemSYOBMnN9EhA" data-element-type="section" class="zpsection "><style type="text/css"></style><div class="zpcontainer-fluid zpcontainer"><div data-element-id="elm_z0l0Vtv1SwyfhEDSR2il8A" data-element-type="row" class="zprow zprow-container zpalign-items- zpjustify-content- " data-equal-column=""><style type="text/css"></style><div data-element-id="elm_Drf7ek_kSgWxoWVCtDTfig" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- "><style type="text/css"> [data-element-id="elm_Drf7ek_kSgWxoWVCtDTfig"].zpelem-col{ border-radius:1px; } </style><div data-element-id="elm_2j3BlNpuRgmownLJGPEHeg" data-element-type="text" class="zpelement zpelem-text "><style> [data-element-id="elm_2j3BlNpuRgmownLJGPEHeg"].zpelem-text { border-radius:1px; } </style><div class="zptext zptext-align- " data-editor="true"><p><span style="font-size:18px;">Inside Report Settings ----&gt; Summary ---&gt;Criteria &nbsp;you can set the &quot;OR&quot; or &quot;AND&quot; operators to limit the records you display on a view.</span></p></div>
</div><div data-element-id="elm_UtmRQT0BQziUzAXTbwhJsg" data-element-type="image" class="zpelement zpelem-image "><style> @media (min-width: 992px) { [data-element-id="elm_UtmRQT0BQziUzAXTbwhJsg"] .zpimage-container figure img { width: 1000px !important ; height: 569px !important ; } } @media (max-width: 991px) and (min-width: 768px) { [data-element-id="elm_UtmRQT0BQziUzAXTbwhJsg"] .zpimage-container figure img { width:1000px ; height:569px ; } } @media (max-width: 767px) { [data-element-id="elm_UtmRQT0BQziUzAXTbwhJsg"] .zpimage-container figure img { width:1000px ; height:569px ; } } [data-element-id="elm_UtmRQT0BQziUzAXTbwhJsg"].zpelem-image { border-radius:1px; } </style><div data-caption-color="" data-size-tablet="" data-size-mobile="" data-align="" data-tablet-image-separate="false" data-mobile-image-separate="false" class="zpimage-container zpimage-align- zpimage-size-original zpimage-tablet-fallback-original zpimage-mobile-fallback-original "><figure role="none" class="zpimage-data-ref"><a class="zpimage-anchor" href="/zohocreator" target="" title="Zoho Creator" rel=""><picture><img class="zpimage zpimage-style-none zpimage-space-none " src="/files/Summary.jpg" width="1000" height="569" loading="lazy" size="original" alt="Creator-Scripts-Zoho-Criteria-Operators"/></picture></a><figcaption class="zpimage-caption zpimage-caption-align-center"><span class="zpimage-caption-content"></span></figcaption></figure></div>
</div><div data-element-id="elm_eat8fPoXNb6L46nFD-yjfA" data-element-type="divider" class="zpelement zpelem-divider "><style type="text/css"> [data-element-id="elm_eat8fPoXNb6L46nFD-yjfA"].zpelem-divider{ border-radius:1px; } </style><style></style><div class="zpdivider-container zpdivider-line zpdivider-align-center zpdivider-width100 zpdivider-line-style-solid "><div class="zpdivider-common"></div>
</div></div><div data-element-id="elm_QQ7OzOZ2S5WC8Pf0z2xp3w" data-element-type="tabs" class="zpelement zpelem-tabs "><style> [data-element-id="elm_QQ7OzOZ2S5WC8Pf0z2xp3w"] .zptabelem-inner-container.zptabs-style-01.zptab-type-01 .zptab, [data-element-id="elm_QQ7OzOZ2S5WC8Pf0z2xp3w"] .zptabelem-inner-container.zptabs-style-01.zptab-type-01 .zptabs-content-container .zptab-content{ border-style:solid; border-color: !important; } @media (max-width: 767px) { } @media all and (min-width: 768px) and (max-width:991px){ } </style><div class="zptabelem-inner-container zptabs-style-01 zptab-type-01 zptabs-align-center zptabicon-align-left zptabicon-size-sm zptabicon-disable "><div class="zptabs-container"><div data-element-id="elm_CyTaaRMOS-yk4DtWuxHFWw" data-element-type="tabheader" data-tab-name="Solution" data-content-id="elm_t3LPqPmJS0O9nGjCxtfotA" class="zpelement zptab " style="margin-top:0;" tabindex="0" role="button" aria-label="Solution"><span class="zptabicon"></span><div><span class="zptab-name">Solution</span></div>
</div><div data-element-id="elm_5MUGxXZ3Q6eWBKZ12vswFQ" data-element-type="tabheader" data-tab-name="Contact Us" data-content-id="elm_06KOIHRRS76YizbrkJK9Fw" class="zpelement zptab " style="margin-top:0;" tabindex="0" role="button" aria-label="Contact Us"><span class="zptabicon"></span><div><span class="zptab-name">Contact Us</span></div>
</div></div><div class="zptabs-content-container"><div data-element-id="elm_CyTaaRMOS-yk4DtWuxHFWw" data-element-type="tabheader" data-tab-name="Solution" data-content-id="elm_t3LPqPmJS0O9nGjCxtfotA" class="zpelement zptab " style="margin-top:0;" tabindex="0" role="button" aria-label="Solution"><span class="zptabicon"></span><div><span class="zptab-name">Solution</span></div>
</div><div data-element-id="elm_t3LPqPmJS0O9nGjCxtfotA" data-element-type="tabcontainer" data-header-id="elm_CyTaaRMOS-yk4DtWuxHFWw" class="zpelement zptab-content " style="margin-top:0;"><div class="zptab-element-container"><div data-element-id="elm_T7kF8IXkRZeQfDeVt8iZmg" data-element-type="iframe" class="zpelement zpelem-iframe "><style type="text/css"> [data-element-id="elm_T7kF8IXkRZeQfDeVt8iZmg"].zpelem-iframe{ border-radius:1px; } </style><div class="zpiframe-container zpiframe-align-center"><iframe class="zpiframe " src="//www.youtube.com/embed/PZH25D65IhQ?wmode=transparent" width="500" height="380" align="center" frameBorder="0"></iframe></div>
</div><div data-element-id="elm_-OMpgQwMrh_RM3Au3yOmig" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column=""><style type="text/css"> [data-element-id="elm_-OMpgQwMrh_RM3Au3yOmig"].zprow{ border-radius:1px; } </style><div data-element-id="elm_PIaW6JJVk1v0bJLq_hZ3lQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"> [data-element-id="elm_PIaW6JJVk1v0bJLq_hZ3lQ"].zpelem-col{ border-radius:1px; } </style><div data-element-id="elm_AMA9Tsi-1HjJ81GEt19Nmw" data-element-type="dividerIcon" class="zpelement zpelem-dividericon "><style type="text/css"> [data-element-id="elm_AMA9Tsi-1HjJ81GEt19Nmw"].zpelem-dividericon{ border-radius:1px; } </style><style></style><div class="zpdivider-container zpdivider-icon zpdivider-align-center zpdivider-width100 zpdivider-line-style-solid zpdivider-icon-size-md zpdivider-style-none "><div class="zpdivider-common"><svg viewBox="0 0 448 512" height="448" width="512" xmlns="http://www.w3.org/2000/svg"><path d="M448 73.143v45.714C448 159.143 347.667 192 224 192S0 159.143 0 118.857V73.143C0 32.857 100.333 0 224 0s224 32.857 224 73.143zM448 176v102.857C448 319.143 347.667 352 224 352S0 319.143 0 278.857V176c48.125 33.143 136.208 48.572 224 48.572S399.874 209.143 448 176zm0 160v102.857C448 479.143 347.667 512 224 512S0 479.143 0 438.857V336c48.125 33.143 136.208 48.572 224 48.572S399.874 369.143 448 336z"></path></svg></div>
</div></div><div data-element-id="elm_WhlwpNQze1xd7BMHfuOG6w" data-element-type="codeSnippet" class="zpelement zpelem-codesnippet "><div class="zpsnippet-container"><div itemscope itemtype="https://schema.org/FAQPage"><div itemscope itemprop="mainEntity" itemtype="https://schema.org/Question"><h3 itemprop="name">What does Zoho Creator do?</h3><div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer"><div itemprop="text"><a href="https://www.creatorscripts.com/zohocreator">Zoho Creator</a> is a low-code platform that enables businesses and individuals to create custom applications and automate their work processes without the need for coding. Zoho Creator provides a drag-and-drop interface, pre-built templates, and a range of tools and features to help users build custom applications quickly and easily. </div>
</div></div><div itemscope itemprop="mainEntity" itemtype="https://schema.org/Question"><h3 itemprop="name">Is Zoho Creator worth it?</h3><div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer"><div itemprop="text"> Whether Zoho Creator is worth it depends on your specific needs and requirements. Zoho Creator is a powerful platform that can help businesses and individuals automate their work processes, streamline their workflow, and save time and resources. If you need a platform to build custom applications, Zoho Creator may be worth it for you. </div>
</div></div><div itemscope itemprop="mainEntity" itemtype="https://schema.org/Question"><h3 itemprop="name">How much does Zoho Creator cost?</h3><div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer"><div itemprop="text"> Zoho Creator has a range of pricing options, starting from a free plan with limited features, to a paid plan that starts at $7 per user per month. The exact cost will depend on the number of users, the features and tools you need, and the type of plan you choose. Zoho also offers a custom pricing option for larger organizations with more complex needs. </div>
</div></div><div itemscope itemprop="mainEntity" itemtype="https://schema.org/Question"><h3 itemprop="name">Is Zoho owned by Google?</h3><div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer"><div itemprop="text"> No, Zoho is not owned by Google. Zoho is a privately held company based in Chennai, India. It was founded in 1996 and provides a range of online productivity and business applications. </div>
</div></div><div itemscope itemprop="mainEntity" itemtype="https://schema.org/Question"><h3 itemprop="name">What are the benefits of Zoho Creator?</h3><div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer"><div itemprop="text"> Zoho Creator provides several benefits, including: <ul><li>Custom application creation without coding</li><li>Automation of work processes and streamlined workflow</li><li>Reduced time and resources required for application development</li><li>Flexibility and scalability to meet changing business needs</li><li>Integration with other Zoho and third-party applications</li></ul></div>
</div></div><div itemscope itemprop="mainEntity" itemtype="https://schema.org/Question"><h3 itemprop="name">Is Zoho hard to learn?</h3><div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer"><div itemprop="text"> The level of difficulty in learning Zoho will depend on your experience and familiarity with similar platforms and tools. Zoho Creator is designed to be user-friendly, with a drag-and-drop interface and pre-built templates, making it accessible to users with limited technical skills. However, as with any platform, there may be a learning curve for some users, especially for more complex features and tools. </div>
</div></div><div itemscope itemprop="mainEntity" itemtype="https://schema.org/Question"><h3 itemprop="name">Does Zoho require coding?</h3><div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer"><div itemprop="text"> No, Zoho Creator does not require coding. The platform provides a drag-and-drop interface and pre-built templates, making it possible to build custom applications without writing any code. However, advanced users with coding skills can also customize and extend their applications using the Zoho Creator scripting language. </div>
</div></div><div itemscope itemprop="mainEntity" itemtype="https://schema.org/Question"><h3 itemprop="name">Do hackers use Zoho?</h3><div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer"><div itemprop="text"> Like any online platform, Zoho is vulnerable to hacking and security threats. However, Zoho takes security very seriously and implements a range of measures to protect its users' data and applications, including encryption, secure data centers, and regular security audits. It is important for users to follow best practices for securing their Zoho accounts, such as using strong passwords and enabling two-factor authentication. </div>
</div></div><div itemscope itemprop="mainEntity" itemtype="https://schema.org/Question"><h3 itemprop="name">Is Zoho completely free?</h3><div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer"><div itemprop="text"> No, Zoho Creator is not completely free. The platform offers a free plan with limited features, as well as paid plans starting at $7 per user per month. The exact cost will depend on the number of users, the features and tools you need, and the type of plan you choose. </div>
</div></div></div></div></div></div></div></div></div><div data-element-id="elm_5MUGxXZ3Q6eWBKZ12vswFQ" data-element-type="tabheader" data-tab-name="Contact Us" data-content-id="elm_06KOIHRRS76YizbrkJK9Fw" class="zpelement zptab " style="margin-top:0;" tabindex="0" role="button" aria-label="Contact Us"><span class="zptabicon"></span><div><span class="zptab-name">Contact Us</span></div>
</div><div data-element-id="elm_06KOIHRRS76YizbrkJK9Fw" data-element-type="tabcontainer" data-header-id="elm_5MUGxXZ3Q6eWBKZ12vswFQ" class="zpelement zptab-content " style="margin-top:0;"><div class="zptab-element-container"><div data-element-id="elm_gzIWlkkWT5yd_tUPEoxhhA" data-element-type="iframe" class="zpelement zpelem-iframe "><style type="text/css"> [data-element-id="elm_gzIWlkkWT5yd_tUPEoxhhA"].zpelem-iframe{ border-radius:1px; } </style><div class="zpiframe-container zpiframe-align-center"><iframe class="zpiframe " src="https://schedule.creatorscripts.com/portal-embed#/customer/schedule" width="100%" height="585px" align="center" allowfullscreen frameBorder="0"></iframe></div>
</div><div data-element-id="elm_r_V6Eqfuo9HqKAUbhsrovw" data-element-type="row" class="zprow zprow-container zpalign-items-flex-start zpjustify-content-flex-start zpdefault-section zpdefault-section-bg " data-equal-column=""><style type="text/css"> [data-element-id="elm_r_V6Eqfuo9HqKAUbhsrovw"].zprow{ border-radius:1px; } </style><div data-element-id="elm_Htg5-EFQabyEPPpg5cCgNg" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- zpdefault-section zpdefault-section-bg "><style type="text/css"> [data-element-id="elm_Htg5-EFQabyEPPpg5cCgNg"].zpelem-col{ border-radius:1px; } </style><div data-element-id="elm_CHdT1fh_x206XNkPhGuYUQ" data-element-type="divider" class="zpelement zpelem-divider "><style type="text/css"> [data-element-id="elm_CHdT1fh_x206XNkPhGuYUQ"].zpelem-divider{ border-radius:1px; } </style><style></style><div class="zpdivider-container zpdivider-line zpdivider-align-center zpdivider-width100 zpdivider-line-style-solid "><div class="zpdivider-common"></div>
</div></div></div></div></div></div></div></div></div></div></div></div></div></div>
 ]]></content:encoded><pubDate>Mon, 25 Jan 2016 08:24:06 -0600</pubDate></item></channel></rss>