<?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/how-to-videos/feed" rel="self" type="application/rss+xml"/><title>Creator Scripts. - Zoho Blogs #How To Videos</title><description>Creator Scripts. - Zoho Blogs #How To Videos</description><link>https://www.creatorscripts.com/blogs/tag/how-to-videos</link><lastBuildDate>Sat, 28 Mar 2026 05:26:56 -0700</lastBuildDate><generator>http://zoho.com/sites/</generator><item><title><![CDATA[How to display images in an html email using public url]]></title><link>https://www.creatorscripts.com/blogs/post/how-to-display-images-in-an-html-email-using-public-url</link><description><![CDATA[<img align="left" hspace="5" src="https://www.creatorscripts.com/In less than a minute- you-ll have your FREE digital menu- -2-.png"/>How to display images in an HTML email using public URL]]></description><content:encoded><![CDATA[<div class="zpcontent-container blogpost-container "><div data-element-id="elm_xtsth2p0ThSSkqkWJesyaw" data-element-type="section" class="zpsection "><style type="text/css"></style><div class="zpcontainer-fluid zpcontainer"><div data-element-id="elm_LIEX-FHwSbe3_Z3TvW-zMA" 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_K8RaU8KnSci77kEdWaNRBg" 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_AxDc8NDVR2i418_uKZuBnQ" data-element-type="heading" class="zpelement zpelem-heading "><style> [data-element-id="elm_AxDc8NDVR2i418_uKZuBnQ"].zpelem-heading { border-radius:1px; } </style><h2
 class="zpheading zpheading-align-left " data-editor="true"><span style="color:inherit;">Greetings, fellow partners If you need to display images in an HTML email to convey a more professional look. A public URL image that is described in the video below can help.&nbsp;</span>All the scripts required to put it together are also included<span style="color:inherit;">. Your welcome!</span></h2></div>
<div data-element-id="elm_edDx3_nnzn2trO-7hpAS2A" data-element-type="video" class="zpelement zpelem-video "><style type="text/css"> [data-element-id="elm_edDx3_nnzn2trO-7hpAS2A"].zpelem-video{ border-radius:1px; } </style><div class="zpvideo-container zpiframe-align-center zpiframe-mobile-align- zpiframe-tablet-align-"><iframe class="zpvideo " width="560" height="315" src="https://www.youtube.com/embed/3vKgz9mic24" frameborder="0" allowfullscreen></iframe></div>
</div><div data-element-id="elm_aUbPF7c3RuKYhY47wd0G7g" data-element-type="text" class="zpelement zpelem-text "><style> [data-element-id="elm_aUbPF7c3RuKYhY47wd0G7g"].zpelem-text { border-radius:1px; } </style><div class="zptext zptext-align-center " data-editor="true"><div style="color:inherit;"><ul><li style="text-align:left;">Add an Image field (Photo)</li><li style="text-align:left;">Upload Photos to the view</li><li style="text-align:left;">Publish the view</li><li style="text-align:left;">Create a Function &quot;Send&quot; under namespace &quot;Emails&quot;</li><li style="text-align:left;">Use an integer parameter to get the record ID</li><li style="text-align:left;">Clean the Photo field</li><li style="text-align:left;">Incorporate the record ID into the public URL along with the name of the view</li><li style="text-align:left;">modify the report type in the URL to image-download</li><li style="text-align:left;">in the end, we include the clean filename storing the Photo</li><li style="text-align:left;">create a variable &quot;message content&quot; to store the body of the email </li><li style="text-align:left;">Now you can add the Send Email function</li></ul><div style="text-align:left;"><br></div><div style="text-align:left;"><div><span style="font-size:18px;">//Script Function</span></div></div><div style="text-align:left;"><br></div><div style="text-align:left;"><div style="color:inherit;"><div>void Emails.Send(int eid)</div><br><div>{</div><br><div>getEmployee = Employees[ID == input.eid];</div><br><div>//Email Function with Image from within a record</div><br><div>filename = getEmployee.Photo.getsuffix(&quot;image/&quot;).getprefix(&quot;\&quot; border&quot;).trim();</div><br><div>customurl = &quot;https://creatorexport.zoho.com/zoho_admin1031/de-constructing-zoho-creator/Employees_Report/&quot; + getEmployee.ID + &quot;/Photo/image-download/GPnD5kAZGK8TGGC69XNjjmMsRyxtdDONOTFORGETTOSMASHTHELIKEBUTTONqFs6OPTQtzhKDebR4H9Xd9WzjSDZCTCxkhBK9wd5nkDjJMJG/&quot; + filename;</div><br><div>messageContent = &quot;&lt;div text-ali&quot;gn: center;\&quot;&gt;&lt;b&gt;&lt;br&gt;&lt;table cellpadding=&quot;\&quot;2\&quot;&quot; cellspacing=&quot;\&quot;2\&quot;&quot; border=&quot;\&quot;0\&quot;&quot; width:&quot; 100%; font-size: 10pt;\&quot;&gt;&lt;tbody&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;img src=&quot;\&quot;&quot;&quot; + customurl + &quot;\&quot;&quot; + &quot; hei&quot;ght: 100px; width: 100px;\&quot;&gt;&lt;/style&gt;&quot;;</div><br><div>sendmail</div><br><div>[</div><br><div>from :zoho.adminuserid</div><br><div>to :&quot;youremail@zoho.com&quot;</div><br><div>subject :&quot;This is a test email with an HTML Image&quot;</div><br><div>message :&quot;&lt;div&gt;&quot; + replaceAll(messageContent,&quot;null&quot;,&quot;&quot;) + &quot;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Any other email details you need to incorporate bla bla bla....&lt;/div&gt;&quot;</div><br><div>]</div><br><div>}</div></div></div><ul style="text-align:left;"></ul></div></div>
</div><div data-element-id="elm_li8_6wUmTiWZhQzSYCvgbg" data-element-type="button" class="zpelement zpelem-button "><style> [data-element-id="elm_li8_6wUmTiWZhQzSYCvgbg"].zpelem-button{ border-radius:1px; } </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="/submit-a-request" title="Zoho Creator Development"><span class="zpbutton-content">Need Custom Development?</span></a></div>
</div></div></div></div></div></div> ]]></content:encoded><pubDate>Wed, 24 Aug 2022 22:25:30 -0500</pubDate></item><item><title><![CDATA[How do I enable export options (print, PDF,etc) for a view embedded in my HTML page?]]></title><link>https://www.creatorscripts.com/blogs/post/How-do-I-enable-export-options-print-PDF-etc-for-a-view-embedded-in-my-HTML-page</link><description><![CDATA[There are several ways to accomplish this task. One is to enable the printing settings directly in your html page as its shown on this solution below. ]]></description><content:encoded><![CDATA[<div class="zpcontent-container blogpost-container "><div data-element-id="elm_pRDk1p9oSGyK68AHAWCtFw" data-element-type="section" class="zpsection "><style type="text/css"></style><div class="zpcontainer-fluid zpcontainer"><div data-element-id="elm_IdC6LqvETmyleBmTfq6elA" 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_ssYoUHFCRESJnCyOoeV7yA" 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_5Tt_yZ2_RlqXdH3aihyLWw" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align- " data-editor="true"><div><p><font face="Georgia, Times New Roman, Times, serif" size="3">There are several ways to accomplish this task.</font></p><p><font face="Georgia, Times New Roman, Times, serif" size="3">One is to enable the printing settings directly in your html page as its shown on this solution below. The other is to place the URL´s as linked text</font></p><p><font face="Georgia, Times New Roman, Times, serif" size="3"><br></font></p><p><span><font face="Georgia, Times New Roman, Times, serif" size="3"></font></span></p><p><span><font face="Georgia, Times New Roman, Times, serif" size="3">a. To print the view, place a linked text in the format given below:</font></span></p><p><span><font face="Georgia, Times New Roman, Times, serif" size="3">&lt;a href=&quot;http://creatorexport.zoho.com/appOwnerName/appLinkName/print/viewLinkName&quot;&gt; Print &lt;/a&gt;</font></span></p><p><span><font face="Georgia, Times New Roman, Times, serif" size="3">b. To export the view in CSV format, place a linked text in the format given below:</font></span></p><p><span><font face="Georgia, Times New Roman, Times, serif" size="3">&lt;a href=&quot;http://creatorexport.zoho.com/appOwnerName/appLinkName/csv/viewLinkName&quot;&gt; CSV Export &lt;/a&gt;</font></span></p><p><span><font face="Georgia, Times New Roman, Times, serif" size="3"> Refer to <a href="http://help.creator.zoho.com/Functionality-based-URLs.html"><span>http://help.creator.zoho.com/Functionality-based-URLs.html</span></a> learn more the URL patterns.</font></span></p><br><p></p></div></div>
</div><div data-element-id="elm_1qiqCIHbQoO61-x4PKrlJw" data-element-type="tabs" class="zpelement zpelem-tabs "><style> @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_raCNiz4gSAiJAkMzO-VttA" data-element-type="tabheader" data-tab-name="Solution" data-content-id="elm_uQy3hu0aQyqlczWSwbSS0g" 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_uAlF-Zo5Ty6RSe2BxCZ88Q" data-element-type="tabheader" data-tab-name="Script" data-content-id="elm_NCkcjQElQKW1lRiXqNe5Hg" class="zpelement zptab " style="margin-top:0;" tabindex="0" role="button" aria-label="Script"><span class="zptabicon"></span><div><span class="zptab-name">Script</span></div>
</div><div data-element-id="elm_NDpGiTc3RM6u4QqWQjLhCg" data-element-type="tabheader" data-tab-name="Need Development?" data-content-id="elm_VQzymNulTfyX3Iedfvhpxg" class="zpelement zptab " style="margin-top:0;" tabindex="0" role="button" aria-label="Need Development?"><span class="zptabicon"></span><div><span class="zptab-name">Need Development?</span></div>
</div></div><div class="zptabs-content-container"><div data-element-id="elm_raCNiz4gSAiJAkMzO-VttA" data-element-type="tabheader" data-tab-name="Solution" data-content-id="elm_uQy3hu0aQyqlczWSwbSS0g" 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_uQy3hu0aQyqlczWSwbSS0g" data-element-type="tabcontainer" data-header-id="elm_raCNiz4gSAiJAkMzO-VttA" class="zpelement zptab-content " style="margin-top:0;"><div class="zptab-element-container"><div data-element-id="elm_sC2Ut1GeRRi1e7kcLsup8A" data-element-type="iframe" class="zpelement zpelem-iframe "><style type="text/css"></style><div class="zpiframe-container zpiframe-align-center"><iframe class="zpiframe " src="//www.youtube.com/embed/TVUuG1sWQMw?wmode=transparent" width="480" height="360" align="center" frameBorder="0"></iframe></div>
</div></div></div><div data-element-id="elm_uAlF-Zo5Ty6RSe2BxCZ88Q" data-element-type="tabheader" data-tab-name="Script" data-content-id="elm_NCkcjQElQKW1lRiXqNe5Hg" class="zpelement zptab " style="margin-top:0;" tabindex="0" role="button" aria-label="Script"><span class="zptabicon"></span><div><span class="zptab-name">Script</span></div>
</div><div data-element-id="elm_NCkcjQElQKW1lRiXqNe5Hg" data-element-type="tabcontainer" data-header-id="elm_uAlF-Zo5Ty6RSe2BxCZ88Q" class="zpelement zptab-content " style="margin-top:0;"><div class="zptab-element-container"><div data-element-id="elm_digAtyy8STGZhR8Za6WKaw" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align- " data-editor="true"><div><p><span><font face="Georgia, Times New Roman, Times, serif" size="3">htmlpage Export_Options()<br>displayname = &quot;Export Options&quot;<br>print = true<br>pdf = true<br>content<br>&lt;%{%&gt;    <br>  &lt;div elName='zc-component' viewLinkName='Birthdate_Calc_Report' params='zc_Header=true'&gt;Loading View...&lt;/div&gt;<br>  &lt;%}%&gt;</font></span></p><p><span><font face="Georgia, Times New Roman, Times, serif" size="3"><br></font></span></p><p><span><font face="Georgia, Times New Roman, Times, serif" size="3">Notice that print &amp; pdf are set as true to enable the printing option on your html page.</font><br><br></span></p></div></div>
</div></div></div><div data-element-id="elm_NDpGiTc3RM6u4QqWQjLhCg" data-element-type="tabheader" data-tab-name="Need Development?" data-content-id="elm_VQzymNulTfyX3Iedfvhpxg" class="zpelement zptab " style="margin-top:0;" tabindex="0" role="button" aria-label="Need Development?"><span class="zptabicon"></span><div><span class="zptab-name">Need Development?</span></div>
</div><div data-element-id="elm_VQzymNulTfyX3Iedfvhpxg" data-element-type="tabcontainer" data-header-id="elm_NDpGiTc3RM6u4QqWQjLhCg" class="zpelement zptab-content " style="margin-top:0;"><div class="zptab-element-container"><div data-element-id="elm_7RBHC8gcSou87v8oeyfmMQ" data-element-type="iframe" class="zpelement zpelem-iframe "><style type="text/css"></style><div class="zpiframe-container zpiframe-align-center"><iframe class="zpiframe " src="http:////www.slideshare.net/slideshow/embed_code/key/AlfCPy2dMlj8K3" width="595" height="485" align="center" frameBorder="0" scrolling="no"></iframe></div>
</div></div></div></div></div></div></div></div></div></div></div> ]]></content:encoded><pubDate>Mon, 04 Jan 2016 09:09:56 -0600</pubDate></item><item><title><![CDATA[Zoho Creator Hack: How to Schedule an Email for birthdate reminders]]></title><link>https://www.creatorscripts.com/blogs/post/Zoho-Creator-Hack-How-to-Schedule-an-Email-for-birthdate-reminders</link><description><![CDATA[Scheduler is a powerful feature in Zoho Creator that allows the application owner to create timed actions without any user input. These timed actions ]]></description><content:encoded><![CDATA[<div class="zpcontent-container blogpost-container "><div data-element-id="elm_yCOKN5OwQlO1rnEcVwdj5g" data-element-type="section" class="zpsection "><style type="text/css"></style><div class="zpcontainer-fluid zpcontainer"><div data-element-id="elm_Si2WvqXOTcOM-E1L6naX_A" 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_XnnI7ji4QLmI_xGKef-_2Q" 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_SMWUI_NyR5-cSU41eA93xg" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align- " data-editor="true"><div><p><span><font face="Georgia, Times New Roman, Times, serif" size="3">Scheduler is a powerful feature in Zoho Creator that allows the application owner to create timed actions without any user input. These timed actions can be executed periodically based on the date and time values present in your form or on fixed date and time.</font></span></p><p><span><font face="Georgia, Times New Roman, Times, serif" size="3"><span></span></font></span></p><p><font face="Georgia, Times New Roman, Times, serif" size="3"><br></font></p><p><font face="Georgia, Times New Roman, Times, serif" size="3">Zoho Creator supports three types of schedules. Form, Report &amp; Custom. For birthdate reminders you need to use Form. </font><span style="background-color:transparent;font-family:Georgia, &quot;Times New Roman&quot;, Times, serif;font-size:medium;font-style:inherit;">Form schedules are events that are scheduled based on a date/time field in your form. (i.e) you will be able to specify a field in the form, whose value will be taken as the scheduling due date (or as start date and end date) in case of schedules with repeats like 'monthly' or 'yearly'.</span></p><font face="Georgia, Times New Roman, Times, serif" size="3"><br></font><p></p></div></div>
</div><div data-element-id="elm_32GfF1_GSb2sNuRUDlz1Qg" data-element-type="tabs" class="zpelement zpelem-tabs "><style> @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_ZIQzWj7ISF6RTJvtlYIdAQ" data-element-type="tabheader" data-tab-name="Solution" data-content-id="elm_5ECincNuTPW1bSs0N032sw" 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_2qp4aXMjQyqMbQpVl0XKDQ" data-element-type="tabheader" data-tab-name="Script" data-content-id="elm_Kelu8PnqQD2aOS3Tno_VYw" class="zpelement zptab " style="margin-top:0;" tabindex="0" role="button" aria-label="Script"><span class="zptabicon"></span><div><span class="zptab-name">Script</span></div>
</div><div data-element-id="elm_tbg5sm2lTw2PKhbPYGC5gw" data-element-type="tabheader" data-tab-name="Need Development?" data-content-id="elm_n1jTsTGHTUKRUhTC4eTs4w" class="zpelement zptab " style="margin-top:0;" tabindex="0" role="button" aria-label="Need Development?"><span class="zptabicon"></span><div><span class="zptab-name">Need Development?</span></div>
</div></div><div class="zptabs-content-container"><div data-element-id="elm_ZIQzWj7ISF6RTJvtlYIdAQ" data-element-type="tabheader" data-tab-name="Solution" data-content-id="elm_5ECincNuTPW1bSs0N032sw" 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_5ECincNuTPW1bSs0N032sw" data-element-type="tabcontainer" data-header-id="elm_ZIQzWj7ISF6RTJvtlYIdAQ" class="zpelement zptab-content " style="margin-top:0;"><div class="zptab-element-container"><div data-element-id="elm_Z0aHYRXRSYexGkKnGPrnMg" data-element-type="iframe" class="zpelement zpelem-iframe "><style type="text/css"></style><div class="zpiframe-container zpiframe-align-center"><iframe class="zpiframe " src="//www.youtube.com/embed/9quQHKZC05w?wmode=transparent" width="640" height="480" align="center" frameBorder="0"></iframe></div>
</div></div></div><div data-element-id="elm_2qp4aXMjQyqMbQpVl0XKDQ" data-element-type="tabheader" data-tab-name="Script" data-content-id="elm_Kelu8PnqQD2aOS3Tno_VYw" class="zpelement zptab " style="margin-top:0;" tabindex="0" role="button" aria-label="Script"><span class="zptabicon"></span><div><span class="zptab-name">Script</span></div>
</div><div data-element-id="elm_Kelu8PnqQD2aOS3Tno_VYw" data-element-type="tabcontainer" data-header-id="elm_2qp4aXMjQyqMbQpVl0XKDQ" class="zpelement zptab-content " style="margin-top:0;"><div class="zptab-element-container"><div data-element-id="elm_Oyu4SlxhRKiVEWl2rdt6lw" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align- " data-editor="true"><div><p><font face="Georgia, Times New Roman, Times, serif" size="3">Copy and paste the script below inside the What to do? tab inside Workflow / Schedules  section. Make sure you replace the name of the forms and the name of the field if different as highlighted below in bold.</font></p><p><font face="Georgia, Times New Roman, Times, serif" size="3"><br></font></p><p><font face="Georgia, Times New Roman, Times, serif" size="3">Name Form: <span><b>Birthdate_Calc</b></span></font></p><p><font face="Georgia, Times New Roman, Times, serif" size="3">Name Field:<b> Email</b></font></p><p><font face="Georgia, Times New Roman, Times, serif" size="3"><br></font></p><p><font face="Georgia, Times New Roman, Times, serif" size="3">emails = <b>Birthdate_Calc</b>[ID == input.ID];<br>sendmail<br>[<br>from:zoho.adminuserid<br>to:emails.<b>Email</b><br>subject:&quot;Happy Birthdate!!!&quot;<br>message:&quot;We love you!!!  hope you have many more wonderful years to celebrate.&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Enjoy!!!&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Name...&lt;/div&gt;&quot;<br>content type:HTML<br>]</font><br></p></div></div>
</div></div></div><div data-element-id="elm_tbg5sm2lTw2PKhbPYGC5gw" data-element-type="tabheader" data-tab-name="Need Development?" data-content-id="elm_n1jTsTGHTUKRUhTC4eTs4w" class="zpelement zptab " style="margin-top:0;" tabindex="0" role="button" aria-label="Need Development?"><span class="zptabicon"></span><div><span class="zptab-name">Need Development?</span></div>
</div><div data-element-id="elm_n1jTsTGHTUKRUhTC4eTs4w" data-element-type="tabcontainer" data-header-id="elm_tbg5sm2lTw2PKhbPYGC5gw" class="zpelement zptab-content " style="margin-top:0;"><div class="zptab-element-container"><div data-element-id="elm_lEEeKCGHTFCFr0xrcyFHtw" data-element-type="iframe" class="zpelement zpelem-iframe "><style type="text/css"></style><div class="zpiframe-container zpiframe-align-center"><iframe class="zpiframe " src="http:////www.slideshare.net/slideshow/embed_code/key/2oyJgAxz2ypYCf" width="595" height="485" align="center" frameBorder="0" scrolling="no"></iframe></div>
</div></div></div></div></div></div><div data-element-id="elm_Xr_cKYt3TZm2sj2LlH3Qmw" data-element-type="codeSnippet" class="zpelement zpelem-codesnippet "><div class="zpsnippet-container"><script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script><!-- CSBlogs --><ins class="adsbygoogle" style="display:block;" data-ad-client="ca-pub-7483619621105949" data-ad-slot="7727730962" data-ad-format="auto"></ins><script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script></div>
</div></div></div></div></div></div> ]]></content:encoded><pubDate>Mon, 28 Dec 2015 09:24:47 -0600</pubDate></item><item><title><![CDATA[How to create a report that is only for certain dates in Zoho Creator]]></title><link>https://www.creatorscripts.com/blogs/post/How-to-create-a-report-that-is-only-for-certain-dates-in-Zoho-Creator</link><description><![CDATA[list  LogHistory_Report {     displayname=&quot;LogHistory Report&quot;     show  all  rows  from  LogHistory [(Added_Time &lt; '10-Nov-2015' &amp; ]]></description><content:encoded><![CDATA[<div class="zpcontent-container blogpost-container "><div data-element-id="elm_aMItPQq5RrmMEmNMSez1_w" data-element-type="section" class="zpsection "><style type="text/css"></style><div class="zpcontainer-fluid zpcontainer"><div data-element-id="elm_zZmN9kegTLuHOp60t6Bv3A" 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_0sXMPkbvQSWHIemlpTBvzA" 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_LIfi_yP9S8qPXBbEp5y6qw" data-element-type="iframe" class="zpelement zpelem-iframe "><style type="text/css"></style><div class="zpiframe-container zpiframe-align-center"><iframe class="zpiframe " src="//www.youtube.com/embed/EsXsxKvG0Lg?&amp;wmode=transparent" width="525" height="344" align="center" frameBorder="0"></iframe></div>
</div><div data-element-id="elm_4xVjiVL2SOq2wUOp_zl4Tg" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align- " data-editor="true"><div><p><span><font face="Georgia, Times New Roman, Times, serif" size="3">list  LogHistory_Report<br>{<br>    displayname = &quot;LogHistory Report&quot;<br>    show  all  rows  from  LogHistory [(Added_Time &lt; '10-Nov-2015' &amp;&amp; Added_Time &gt; '01-Jun-2015')]<br>    (<br>        Added_Time as &quot;Added Time&quot;<br>        Added_User as &quot;Added User&quot;<br>        Activity<br>        (<br>            width = 250px<br>        )<br>        Modified_Time as &quot;Modified Time&quot;<br>        Modified_User as &quot;Modified User&quot;<br>    )<br>}</font></span></p></div></div>
</div><div data-element-id="elm__ynbmeqyRQWJGB_CxQS8jw" data-element-type="codeSnippet" class="zpelement zpelem-codesnippet "><div class="zpsnippet-container"><script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script><!-- CSBlogs --><ins class="adsbygoogle" style="display:block;" data-ad-client="ca-pub-7483619621105949" data-ad-slot="7727730962" data-ad-format="auto"></ins><script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script></div>
</div><div data-element-id="elm_fNw6-8N9TNyNg4zN0O9W-Q" data-element-type="iframe" class="zpelement zpelem-iframe "><style type="text/css"></style><div class="zpiframe-container zpiframe-align-center"><iframe class="zpiframe " src="http:////www.slideshare.net/slideshow/embed_code/key/LuktomYx08RwxG" width="510" height="420" align="center" frameBorder="0" scrolling="no"></iframe></div>
</div></div></div></div></div></div> ]]></content:encoded><pubDate>Tue, 03 Nov 2015 06:32:38 -0600</pubDate></item><item><title><![CDATA[How can I update the value of a field based on values entered in other fields?]]></title><link>https://www.creatorscripts.com/blogs/post/How-can-I-update-the-value-of-a-field-based-on-values-entered-in-other-fields</link><description><![CDATA[Write the following code within the  on add -&gt; on validate  block of the  Script  tab. In the following deluge code, the value of the field  PatientID  i ]]></description><content:encoded><![CDATA[<div class="zpcontent-container blogpost-container "><div data-element-id="elm_vBCVKflVT5WQ-icOXrRWOw" data-element-type="section" class="zpsection "><style type="text/css"></style><div class="zpcontainer-fluid zpcontainer"><div data-element-id="elm_XCeS_BBFRLiQs-iR-707Sw" 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_pRCXSNFEQoqMA1mj5KDLkg" 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_HdpQ7VuASm-qnQsVE8nvcw" data-element-type="iframe" class="zpelement zpelem-iframe "><style type="text/css"></style><div class="zpiframe-container zpiframe-align-center"><iframe class="zpiframe " src="//www.youtube.com/embed/Hy2F42L6r_w?&amp;wmode=transparent" width="525" height="344" align="center" frameBorder="0"></iframe></div>
</div><div data-element-id="elm_L7cQf78xTUmg0RaDff0BhA" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align- " data-editor="true"><div><p><span></span></p><p><font face="Georgia, Times New Roman, Times, serif" size="3">Write the following code within the <b>on add -&gt; on validate</b> block of the <b>Script </b>tab. In the following deluge code, the value of the field <b>PatientID</b> is calculated based on the form values specified for the First_Name and Last_Name and the value returned by the variable zoho.currenttime.</font></p><pre><font face="Georgia, Times New Roman, Times, serif" size="3"><code></code></font><pre><code><font face="Georgia, Times New Roman, Times, serif" size="3">on add<br>{<br>on validate<br>{<br>input.PatientID = input.First_Name + &quot; &quot; + input.Last_Name + &quot; &quot; + zoho.currenttime;<br>}<br>}<br></font></code></pre></pre><p><font face="Georgia, Times New Roman, Times, serif" size="3">Write the following code within the <b>on edit -&gt; on validate</b> block of the <b>Script </b>tab. In the following deluge code, the value of the field <b>PatientID</b> is calculated based on the form values specified for the First_Name and Last_Name and the value returned by the variable zoho.currenttime.<br></font></p><pre><font face="Georgia, Times New Roman, Times, serif" size="3"><code>on  edit<br>  {<br>  on validate<br>  {<br>  input.PatientID = input.First_Name + &quot; &quot; + input.Last_Name + &quot; &quot; + zoho.currenttime;<br>  }<br>  }</code></font></pre><p></p></div></div>
</div><div data-element-id="elm_RdzlcWEeSX6pqV4xoUhbHA" data-element-type="codeSnippet" class="zpelement zpelem-codesnippet "><div class="zpsnippet-container"><script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script><!-- CSBlogs --><ins class="adsbygoogle" style="display:block;" data-ad-client="ca-pub-7483619621105949" data-ad-slot="7727730962" data-ad-format="auto"></ins><script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script></div>
</div></div></div></div></div></div> ]]></content:encoded><pubDate>Mon, 26 Oct 2015 07:55:33 -0600</pubDate></item><item><title><![CDATA[How can I add or subtract days to a date field in Zoho Creator?]]></title><link>https://www.creatorscripts.com/blogs/post/How-can-I-add-or-subtract-days-to-a-date-field-in-Zoho-Creator</link><description><![CDATA[Effortlessly manage date fields in Zoho Creator. Learn how to add or subtract days for flexible data handling. Optimize your workflows now!]]></description><content:encoded><![CDATA[<div class="zpcontent-container blogpost-container "><div data-element-id="elm_NEM5l-kDR0m3ChZW4aC0Ww" data-element-type="section" class="zpsection "><style type="text/css"></style><div class="zpcontainer-fluid zpcontainer"><div data-element-id="elm_dCM8_7F9SKizb-pCKCaNRg" 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_opuxAZLDTIaWVaZvArceHQ" 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_EfIsHEZETfyUh4V-QMnFEA" data-element-type="iframe" class="zpelement zpelem-iframe "><style type="text/css"></style><div class="zpiframe-container zpiframe-align-center"><iframe class="zpiframe " src="//www.youtube.com/embed/DciJdOi9CoE?&amp;wmode=transparent" width="525" height="344" align="center" frameBorder="0"></iframe></div>
</div><div data-element-id="elm_ZFA5RiYxQYy8FF1_nK0Zqg" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align- " data-editor="true"><div><p><span><font face="Georgia, Times New Roman, Times, serif" size="3"></font></span></p><p><font face="Georgia, Times New Roman, Times, serif" size="3"><span style="margin-left:5px;">You can manipulate a date field by using the + (to add) and - (to subtract)&nbsp;<a href="http://help.creator.zoho.com/Operators.html" style="text-decoration:underline;"><font><span>Operators</span></font></a>&nbsp;or by using the<a href="http://help.creator.zoho.com/Built-in-Functions.html" style="text-decoration:underline;"><font><span>&nbsp;Built-in date functions.</span></font></a>&nbsp;For example, if you would like to add 364 days to a particular date field, say&nbsp;<i><span>StartDate</span></i>&nbsp;and display it in another field, define a formula field named&nbsp;<i><span>ExpiryDate</span></i>&nbsp;with expression&nbsp;<font><span>(StartDate + &quot;52W:0D:0H:0M:0S&quot;)</span><b><span>&nbsp;or&nbsp;</span></b><span>by using the&nbsp;</span><b><span>addDay</span></b><span>&nbsp;built-in date function,&nbsp;</span></font></span></font></p><p><font face="Georgia, Times New Roman, Times, serif" size="3"><span>For example,</span></font></p><font face="Georgia, Times New Roman, Times, serif" size="3"><span style="margin-left:5px;"><pre><font><span>form Sample<br>{<br><br>StartDate<br>(<br>type = date<br>)<br><br><br>ExpiryDate<br>(<br>type = formula<br>value =&nbsp;</span></font><b><font><span>(StartDate + &quot;52W:0D:0H:0M:0S&quot;)</span></font></b><font><span><br>)<br></span></font><font><font>}</font></font></pre></span></font><p></p></div></div>
</div><div data-element-id="elm_QEBkVG8d--y0sIqh_BAc7w" data-element-type="button" class="zpelement zpelem-button "><style> [data-element-id="elm_QEBkVG8d--y0sIqh_BAc7w"].zpelem-button{ border-radius:1px; } </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="/zohocreator" title="Zoho Creator"><span class="zpbutton-content">Get in on the Action</span></a></div>
</div><div data-element-id="elm_47teH8Wu-yMg5YgMErCPDw" data-element-type="divider" class="zpelement zpelem-divider "><style type="text/css"> [data-element-id="elm_47teH8Wu-yMg5YgMErCPDw"].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_0Tfj12uMYFWEYHBfWX_97Q" data-element-type="text" class="zpelement zpelem-text "><style> [data-element-id="elm_0Tfj12uMYFWEYHBfWX_97Q"].zpelem-text { border-radius:1px; } </style><div class="zptext zptext-align-left " data-editor="true"><p><span style="color:inherit;font-size:18px;">Discover a treasure trove of valuable content related to <a href="https://www.creatorscripts.com/blogs/zoho-creator/" title="Zoho Creator" rel="">Zoho Creator</a>! If you found this post insightful, you'll love delving into our collection of informative articles covering various aspects of Zoho Creator. From advanced techniques to workflow optimization, our blog offers a wealth of knowledge to help you master the platform. Keep exploring and unlock the full potential of Zoho Creator for your business needs. <a href="https://www.creatorscripts.com/blogs/zoho-creator/" title="Happy Reading!" rel="">Happy Reading!</a></span><br></p></div>
</div><div data-element-id="elm_R-yY6VuRqjQylBaH5adSXw" data-element-type="divider" class="zpelement zpelem-divider "><style type="text/css"> [data-element-id="elm_R-yY6VuRqjQylBaH5adSXw"].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_ZgZ55U9UFC3aMNdrSrkXkg" data-element-type="codeSnippet" class="zpelement zpelem-codesnippet "><div class="zpsnippet-container"><div itemscope itemtype="https://schema.org/FAQPage"><div itemprop="mainEntity" itemscope itemtype="https://schema.org/Question"><h2 itemprop="name">What are low-code solutions examples?</h2><div itemprop="acceptedAnswer" itemscope itemtype="https://schema.org/Answer"><p itemprop="text">Low-code solutions examples include platforms like Zoho Creator, OutSystems, Mendix, and Microsoft Power Apps. These platforms provide visual development interfaces that enable users to create applications with minimal coding, accelerating the development process.</p></div>
</div><div itemprop="mainEntity" itemscope itemtype="https://schema.org/Question"><h2 itemprop="name">How is low-code industry shaping the future of business?</h2><div itemprop="acceptedAnswer" itemscope itemtype="https://schema.org/Answer"><p itemprop="text">The low-code industry is shaping the future of business by empowering citizen developers and speeding up application development. It allows business users with no coding experience to create applications, enabling faster innovation, increased agility, and improved digital transformation.</p></div>
</div><div itemprop="mainEntity" itemscope itemtype="https://schema.org/Question"><h2 itemprop="name">What can you build with low-code?</h2><div itemprop="acceptedAnswer" itemscope itemtype="https://schema.org/Answer"><p itemprop="text">With low-code, you can build a wide range of applications, including customer relationship management (CRM) systems, workflow management tools, project management platforms, employee portals, and more. The flexibility of low-code platforms allows for customization and scalability to meet specific business needs.</p></div>
</div><div itemprop="mainEntity" itemscope itemtype="https://schema.org/Question"><h2 itemprop="name">What is the future of low-code platform?</h2><div itemprop="acceptedAnswer" itemscope itemtype="https://schema.org/Answer"><p itemprop="text">The future of low-code platforms looks promising. As businesses continue to embrace digital transformation, low-code will play a vital role in accelerating application development and enabling citizen developers. The platforms will evolve with new features, integrations, and improved user experiences to cater to evolving business requirements.</p></div>
</div><div itemprop="mainEntity" itemscope itemtype="https://schema.org/Question"><h2 itemprop="name">Which company uses low-code?</h2><div itemprop="acceptedAnswer" itemscope itemtype="https://schema.org/Answer"><p itemprop="text">Many companies across industries use low-code platforms to streamline their application development processes. Some notable examples include Siemens, Toyota, Deloitte, Lufthansa, and Liberty Mutual. These companies leverage low-code to accelerate innovation, enhance operational efficiency, and improve customer experiences.</p></div>
</div><div itemprop="mainEntity" itemscope itemtype="https://schema.org/Question"><h2 itemprop="name">What is low-code strategy?</h2><div itemprop="acceptedAnswer" itemscope itemtype="https://schema.org/Answer"><p itemprop="text">Low-code strategy refers to an organization's approach to utilizing low-code platforms and methodologies. It involves identifying use cases, establishing governance, training citizen developers, and integrating low-code development into the overall digital transformation strategy. A well-defined low-code strategy can drive innovation, agility, and cost savings.</p></div>
</div></div></div></div><div data-element-id="elm_9hlaa8ocTKi27-XPgseJwg" data-element-type="iframe" class="zpelement zpelem-iframe "><style type="text/css"></style><div class="zpiframe-container zpiframe-align-center"><iframe class="zpiframe " src="http:////www.slideshare.net/slideshow/embed_code/key/LuktomYx08RwxG" width="510" height="420" align="center" frameBorder="0" scrolling="no"></iframe></div>
</div></div></div></div></div></div> ]]></content:encoded><pubDate>Fri, 09 Oct 2015 06:25:55 -0500</pubDate></item><item><title><![CDATA[How to Mass Update your database in Zoho Creator]]></title><link>https://www.creatorscripts.com/blogs/post/How-to-Mass-Update-your-database-in-Zoho-Creator1</link><description><![CDATA[To Edit Multiple Records, Select the records to be edited and click on the  Bulk Edit  option displayed below the Report header. For shared users, the  Bu ]]></description><content:encoded><![CDATA[<div class="zpcontent-container blogpost-container "><div data-element-id="elm_4nBi9xRDSyaYyQYPWM36zg" data-element-type="section" class="zpsection "><style type="text/css"></style><div class="zpcontainer-fluid zpcontainer"><div data-element-id="elm_waPJGoQhSmKEz6XMiWx1TQ" 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_-2sK7QTRTmmkowWlM8CQMg" 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_-PwsoMA0Tm2-c1pVnzZWJA" data-element-type="iframe" class="zpelement zpelem-iframe "><style type="text/css"></style><div class="zpiframe-container zpiframe-align-center"><iframe class="zpiframe " src="//www.youtube.com/embed/7Cw37Ze8CAs?&amp;wmode=transparent" width="525" height="344" align="center" frameBorder="0"></iframe></div>
</div><div data-element-id="elm_gC5FAYnmQD2Q8lxhRH0UZQ" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align- " data-editor="true"><div><p><span><font face="Georgia, Times New Roman, Times, serif" size="3"></font></span></p><p style="font-weight:bold;"><font face="Georgia, Times New Roman, Times, serif" size="3">To Edit Multiple Records,</font></p><ol style="margin-left:35px;margin-bottom:20px;"><li style="font-weight:inherit;font-style:inherit;"><font face="Georgia, Times New Roman, Times, serif" size="3">Select the records to be edited and click on the <b>Bulk Edit</b> option displayed below the Report header. For shared users, the <b>Bulk Edit</b> option will be displayed only if access permission is provided by the application owner.</font></li><li style="font-weight:inherit;font-style:inherit;"><font face="Georgia, Times New Roman, Times, serif" size="3">In the <b>Bulk Edit</b> dialog, select the column whose value needs to be modified and specify the new value. You can select multiple columns and specify their values from this dialog.</font></li><li style="font-weight:inherit;font-style:inherit;"><font face="Georgia, Times New Roman, Times, serif" size="3">Click on the <b>Apply</b> button to apply the new values specified. The selected records will be updated with the new values.</font></li></ol><p></p></div></div>
</div><div data-element-id="elm_xD8pf9rFT--CBJ7Y9NTBFw" data-element-type="image" class="zpelement zpelem-image "><style></style><div data-caption-color="" data-size-tablet="" data-size-mobile="" data-align="center" data-tablet-image-separate="" data-mobile-image-separate="" class="zpimage-container zpimage-align-center zpimage-size-original zpimage-tablet-fallback-original zpimage-mobile-fallback-original hb-lightbox " data-lightbox-options="
                type:fullscreen,
                theme:dark"><figure role="none" class="zpimage-data-ref"><span class="zpimage-anchor" role="link" tabindex="0" aria-label="Open Lightbox" style="cursor:pointer;"><picture><img class="zpimage zpimage-style-none zpimage-space-none " src="/files/view-bulk-edit.png" size="original" alt="Creator Scripts Bulk Edit" data-lightbox="true"/></picture></span><figcaption class="zpimage-caption zpimage-caption-align-center"><span class="zpimage-caption-content"></span></figcaption></figure></div>
</div><div data-element-id="elm_jL7jzYAmRFir4qwb21C_2g" data-element-type="codeSnippet" class="zpelement zpelem-codesnippet "><div class="zpsnippet-container"><script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script><!-- CSBlogs --><ins class="adsbygoogle" style="display:block;" data-ad-client="ca-pub-7483619621105949" data-ad-slot="7727730962" data-ad-format="auto"></ins><script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script></div>
</div></div></div></div></div></div> ]]></content:encoded><pubDate>Tue, 29 Sep 2015 07:38:44 -0500</pubDate></item><item><title><![CDATA[Zoho Creator: How can I validate if a field value falls within a specified range?]]></title><link>https://www.creatorscripts.com/blogs/post/Zoho-Creator- How-can-I-validate-if-a-field-value-falls-within-a-specified-range</link><description><![CDATA[Dive into Zoho Creator's capabilities and learn how to ensure field values stay within desired limits. Master the art of range validation for optimal data accuracy.]]></description><content:encoded><![CDATA[<div class="zpcontent-container blogpost-container "><div data-element-id="elm_XIJAUUjZRKC0QZ5MxoUViA" data-element-type="section" class="zpsection "><style type="text/css"></style><div class="zpcontainer-fluid zpcontainer"><div data-element-id="elm_OG4AGkELQLWNiYok8VxV4Q" 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_WC8BWjpNR4WxsCtWOq7uyA" 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_PIfsKm4lQG-vN9rAnW2arA" data-element-type="iframe" class="zpelement zpelem-iframe "><style type="text/css"></style><div class="zpiframe-container zpiframe-align-center"><iframe class="zpiframe " src="//www.youtube.com/embed/mJd_GK3kDxs?&amp;wmode=transparent" width="525" height="344" align="center" frameBorder="0"></iframe></div>
</div><div data-element-id="elm_O0N4YD1DTsqAGoW68K_Bhw" data-element-type="text" class="zpelement zpelem-text "><style> [data-element-id="elm_O0N4YD1DTsqAGoW68K_Bhw"].zpelem-text { border-radius:1px; } </style><div class="zptext zptext-align- " data-editor="true"><p><span></span></p><div><p></p><p style="font-size:13px;"><font size="2"><span style="font-size:18px;">In the following sample, if the year specified in the&nbsp;<i>DateofBirth</i>&nbsp;field is greater than the current year, the submit action will cancel. The script is added to the&nbsp;<b>Form Actions -&gt; on add -&gt; on validate</b>&nbsp;block to validate a new record&nbsp;and in the&nbsp;<b>Form Actions -&gt; on edit -&gt; validate</b>&nbsp;block to validate an existing record which is submitted after editing.</span></font></p><font><span style="font-size:18px;"><pre><code>if (input.DateOfBirth.getYear() &gt; zoho.currentdate.getYear())<br>{<br>alert &quot;Enter valid Date of Birth&quot;;<br>cancel submit;<br>}</code></pre></span></font><p></p></div><p></p></div>
</div><div data-element-id="elm_Uxz6lfmRogv9-6aH3_y5jQ" data-element-type="text" class="zpelement zpelem-text "><style> [data-element-id="elm_Uxz6lfmRogv9-6aH3_y5jQ"].zpelem-text { border-radius:1px; } </style><div class="zptext zptext-align-left " data-editor="true"><p><span style="color:inherit;font-size:18px;"><a href="/zohocreator" title="Zoho Creator" rel="">Zoho Creator</a> is a treasure trove of functionalities waiting to be explored. Whether you're looking to optimize your workflows, create custom applications, or master intricate features, our collection of <a href="https://www.creatorscripts.com/blogs/zoho-creator/" title="Zoho Creator posts" rel="">Zoho Creator posts</a> has you covered. Each article delves deep into specific topics, offering insights, tips, and hacks that are invaluable to both novices and seasoned users. Don't miss out on unlocking the full potential of this powerful platform. Dive into our curated content and elevate your Zoho Creator expertise today!</span><br></p></div>
</div><div data-element-id="elm_VYrkF1MRaYk6NPp7b_OXag" data-element-type="divider" class="zpelement zpelem-divider "><style type="text/css"> [data-element-id="elm_VYrkF1MRaYk6NPp7b_OXag"].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_7mVTwY3G4YFxvn9AFgTD-g" 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 data-element-id="elm_ZDZSmIx_UHM7ICKeMTlqUw" data-element-type="divider" class="zpelement zpelem-divider "><style type="text/css"> [data-element-id="elm_ZDZSmIx_UHM7ICKeMTlqUw"].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> ]]></content:encoded><pubDate>Mon, 28 Sep 2015 09:36:11 -0500</pubDate></item><item><title><![CDATA[How do I rearrange the columns in a Zoho Creator View?]]></title><link>https://www.creatorscripts.com/blogs/post/How-do-I-rearrange-the-columns-in-a-Zoho-Creator-View</link><description><![CDATA[In a view, the columns are displayed in the order the corresponding fields in the form were created. It is, however, possible to rearrange the columns ]]></description><content:encoded><![CDATA[<div class="zpcontent-container blogpost-container "><div data-element-id="elm_RBw6ot9-T42TN3Jjagv48w" data-element-type="section" class="zpsection "><style type="text/css"></style><div class="zpcontainer-fluid zpcontainer"><div data-element-id="elm_x22KZUJSQK-DrcHi0FOW2Q" 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_OWmqupdDR5moos4bkcpTQQ" 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_zuGLmwtpRXyGzYoXlWDLMA" data-element-type="iframe" class="zpelement zpelem-iframe "><style type="text/css"></style><div class="zpiframe-container zpiframe-align-left"><iframe class="zpiframe " src="//www.youtube.com/embed/jRA8rb6opYU?wmode=transparent" width="560" height="315" align="left" frameBorder="0"></iframe></div>
</div><div data-element-id="elm_xdLEHaqGSN6eccLjtKKjEw" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align- " data-editor="true"><div><p><span><font face="Georgia, Times New Roman, Times, serif" size="3"></font></span></p><p><font face="Georgia, Times New Roman, Times, serif" size="3">In a view, the columns are displayed in the order the corresponding fields in the form were created. It is, however, possible to rearrange the columns in a view. To do so:<br><br></font></p><ul><li><font face="Georgia, Times New Roman, Times, serif" size="3"><span>Click on &quot;Edit this application&quot; and navigate to the required view.</span></font></li><li><font face="Georgia, Times New Roman, Times, serif" size="3"><span>From the left pane, from under &quot;Display&quot; click on &quot;Preview&quot;.<br></span></font></li><li><font face="Georgia, Times New Roman, Times, serif" size="3"><span>The columns are displayed in the order they will be displayed when the view is accessed.</span></font></li><li><font face="Georgia, Times New Roman, Times, serif" size="3"><span>Drag the column that you'd like to move, and drop it in the required position.</span></font></li><li><font face="Georgia, Times New Roman, Times, serif" size="3">When the view is accessed, the columns will be displayed in the new order.</font></li></ul><p></p></div></div>
</div><div data-element-id="elm_xo0s62_XS9Wx-fSjUY1ysQ" data-element-type="codeSnippet" class="zpelement zpelem-codesnippet "><div class="zpsnippet-container"><script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script><!-- CSBlogs --><ins class="adsbygoogle" style="display:block;" data-ad-client="ca-pub-7483619621105949" data-ad-slot="7727730962" data-ad-format="auto"></ins><script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script></div>
</div></div></div></div></div></div> ]]></content:encoded><pubDate>Sat, 26 Sep 2015 09:02:22 -0500</pubDate></item><item><title><![CDATA[How can I copy/duplicate a Form in Zoho Creator?]]></title><link>https://www.creatorscripts.com/blogs/post/How-can-I-copy-duplicate-a-Form-in-Zoho-Creator</link><description><![CDATA[Right now it is not possible to duplicate a form directly. However, it is possible to do so via script.  Click on &quot;Edit this Application&quot; and ]]></description><content:encoded><![CDATA[<div class="zpcontent-container blogpost-container "><div data-element-id="elm_i_8Qo2eWSYCIDswPLV5YKg" data-element-type="section" class="zpsection "><style type="text/css"></style><div class="zpcontainer-fluid zpcontainer"><div data-element-id="elm_jVX3viGiR_yDl4UvH_ckSA" 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_Sr5eYsz0TSae7tDFbimPNQ" 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_e9KVAktdT3iqBflHy7NTUQ" data-element-type="iframe" class="zpelement zpelem-iframe "><style type="text/css"></style><div class="zpiframe-container zpiframe-align-left"><iframe class="zpiframe " src="//www.youtube.com/embed/8X5t8e36dso?wmode=transparent" width="560" height="315" align="left" frameBorder="0"></iframe></div>
</div><div data-element-id="elm_34PObLytT8OooOljfwaMbA" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align- " data-editor="true"><div><p><span><font face="Georgia, Times New Roman, Times, serif" size="3"></font></span></p><p><font face="Georgia, Times New Roman, Times, serif" size="3">Right now it is not possible to duplicate a form directly. However, it is possible to do so via script. <br></font></p><ul><li><font face="Georgia, Times New Roman, Times, serif" size="3">Click on &quot;Edit this Application&quot; and navigate to the particular form.</font></li><li><font face="Georgia, Times New Roman, Times, serif" size="3">From the top strip displaying the Form name, mouse over on &quot;More Actions&quot; and click &quot;Form Definition&quot;.</font></li><li><font face="Georgia, Times New Roman, Times, serif" size="3">You will be redirected to the Script tab displaying the form's configuration in Deluge Script.</font></li><li><font face="Georgia, Times New Roman, Times, serif" size="3">From the left pane, from under &quot;Form Definition&quot;, click on &quot;With Action&quot;.</font></li><li><font face="Georgia, Times New Roman, Times, serif" size="3">Copy the entire code snippet</font></li><li><font face="Georgia, Times New Roman, Times, serif" size="3">From the &quot;Select Form&quot; in the top left corner, select &quot;New Form&quot;</font></li><li><font face="Georgia, Times New Roman, Times, serif" size="3">Paste the copied code snippet.</font></li><li><font face="Georgia, Times New Roman, Times, serif" size="3">Since a form with the name form xyz already exists, give the form some other name. The forms can have the same display name though.</font></li><li><font face="Georgia, Times New Roman, Times, serif" size="3">Click on &quot;Save Script&quot; to save the form.</font></li></ul><p></p></div></div>
</div></div></div></div></div></div> ]]></content:encoded><pubDate>Fri, 25 Sep 2015 06:40:19 -0500</pubDate></item></channel></rss>