How Do I Upload a File from an HTML Page?
I am struggling with how to upload a file through editing a record from an html page. I have a page called: Driver Dashboard. On this dash I want the driver to be able to edit one single field on a form called Order_Form. That field is a file upload. Here is what I have tried so far that have not worked. Stateless forms. Doesn't work as stateless forms don't support the file attachment field type. Embed Report: I have not been able to embed only the field I need from the form. I can only get it
Populate subform field from On Add Row event does not work unless value is selected manually
1. I have a form, MyMainForm that contains a subform MySubForm. 2. The lookup field, Application_Number_Text in MySubForm is a dropdown. 3. A script in the MySubForm's On Add Row event populates the Lookup field in MySubForm field: row.Application_Number_Text = [blah blah blah] 4. When I add a subform record, the Application_Number_Text field appears to be filled. 5. When I try to save the subform row, I receive an error. This is because Zoho Creator thinks that Application_Number_Text field is empty.
Decimal number of a letter
Is there a function to get the decimal number of a letter? For example A is 65 and a is 97.
Count lines in a Multiline field
Can anybody tell me how to count the number of lines in a mulitline field? I have a subform (B) within a form (A) that has a string field (row.Unique_ID) that I capture in a Multiline field (input.UID_List) as a summary of the unique field records using the following code: 1. if (!input.UID_List.contains(row.Unique_ID())) 2. { 3. input.UID_List = input.UID_List + "\n" + row.Unique_ID; 4. } What I want to do is then count the lines in the field to calculate the number of different entries in
Error - There is no such view in Zoho Creator
I have a application that is created in Creator: I would like to use the REST API's to download from the view/report. It keeps giving me the following error: <!-- $Id$ --> <div style="text-align: center;vertical-align: middle;font-size: 14px;margin-top:150px;">There is no such view in <a href='/'><strong>Zoho Creator</strong></a></div> ****** end of error The URL that I use: https://creator.zoho.com/api/zoho_bob191/json/t3/view/GoldMine_Web_Import_Report What I send to the URL: <input type="hidden"
[SOLVED] Create new subform entry from main form
Hi! So, I want to do the following. Form A = Missions Form B = Messages Form B is the subform of form A Im trying to create a function in form B (not as the subform, but as the "add" form) which allows you to answer a question which was generated in the subform. Basically, when the user clicks on "answer the question" button on form B, it should be seen in Form A as a subform entry. I have managed to create the following function (and it doesnt complain, but wont work). Form B has a lookupfield (exisiting
Migration tool - Please specify valid criteria field name
I'm trying to use the Zoho Migration tools to upload a CSV into a form, but everytime i run the command i get: Please specify valid criteria field name the command is: zohocreator.exe upload.csv -authtoken *********** -e AppName -au FormName Asset_Serial Asset_Serial the first Asset_Serial being the deluge field name and the second being the CSV column name. at this point i'm stuck because the documentation on the migration tool is mediocre at best so any input here would be great. Thanks.
Fetching Data problem, Number of arguments mismatches
I could use some help on determining what is wrong with this code. I get the following error message: Error at line number : 1 Number of arguments mismatches if(Time_Sheet_Entry [ID == input.Employee].count() > 0) { x = Time_Sheet_Entry[ID == input.Employee ]; //input. refers to fields in current form input.Employee_Name = x.Full_Name; input.Status = x.Status; input.License_Level = x.License_Level; } Thank you in advance for your advice.
Zoho creator showcase
Hi guys, Just wondering if there is any place where some cool Zoho creator projects can be showcased? Or maybe there is some material out there that I haven't seen, on Youtube or something? I am building away at Zoho creator but I would really like some inspiration from others and to see what is really possible in terms of layout, functionality etc...? thanks Dave
How to create a printable invoice
Hi guys, I have been using zoho creator for the past week and I find it amazing! I have build a simple time tracking app and a project management app for my own use. I would like to use zoho creator for invoicing as well - at the moment I just use a word file, edit it and save/print each time a do an invoice. All I really need is a set layout that automatically fills in invoice number and allows me to add a few details and then print. What is the best way to do this in zoho creator?
PDF functionality on published report links not working. Forcing Zoho log in
Hello I am using published reports in a separate website. I want to use the PDF functionality to export record summary's as PDFs. I have tried two methods, and they both redirect to the zoho log in page. First in the "View Record" option where my users can view their record in a record summary template, there is a specific PDF button and this leads to the log in page even after published. Then I tried to use an open-url custom action to open up a record as PDF and automatically save the file. This
Record Summary doesn't appear in the Schedules feature
Hi, I have a question: Why when i want to send an email with the record summary template attachment through the form schedule, i don't see the relevant template in the list? The form chosen in the "When to Do" is the same on which the record summary report is written. Also, what is the difference between the send mail and send report tasks, when i want to use the record summary attachment? Thank you
Error while following tutorial
Hi, I'm following this tutorial https://www.zoho.com/creator/help/tutorials/advanced-app-building.html When I do this and enter the script mentioned in the tutorial: Click on Workflow tab on the left to go to the script builder. Select Field Actions - Products - Product - On User input and add the following code in the editor box I get the following error: Error at line number : 2 Variable 'row' is not defined Any ideas in what I'm doing wrong? Kind regards, Johan Boerema
detect popup blocker
Is there a way in Creator to detect when an openurl is blocked by the browser? The browser may only put a small x in the upper right. The user may not notice the small x. If deluge can detect if the blocker is on then a message can be displayed on the screen alerting the user to the problem.
Hide Subform fields On Edit ??
FormA has fields: FieldX, FieldY, and Subform SubformB with Fields: Field1, Field2, Field3, Field4 In the On Add, On Load for FormA I have the following script: hide FieldY hide SubformB.Field3 hide SubformB.Field4 and it all works fine while I'm entering a new record. In the On Edit, On Load script for FormA, I have the same script: hide FieldY hide SubformB.Field3 hide SubformB.Field4 But when I Edit that new record by doing an 'Edit' from a Report/View, only FieldY on the main form is hidden,
Code generating application (returning values of new entries based on count function of existing records and display automatically)
I am currently working on a way generate codes for items. I have two main questions concerning my application, which are: - How can I have zoho automatically number based on existing records and a specific criteria - How can zoho automatically display a code which is based on another field AND a count function Let me explain in detail... My application has two forms: Items & Product Code Generator In a first step I will add an item to the Items form. The form has three fields which are Item Name,
Do I need to pay for Customer Portal?
Just so I can have a site where visitors log in and edit information about themselves into a directory?
fetch data from subform in page
Bit of newbie question here: I'm working on an app where there are two forms: form name: section_builder field1: letterTitle field2: textSnippets There is a subform: form_name: text_snippets field1: snippetTitle field2: snippetContents Field 2 in form 1 is a multi-value selector which corresponds to field 1 in form 2. What I want to do is create a deluge script in a page which will simply output a list of all the text snippets that correspond to a single letterTitle. I have read the article https://www.zoho.com/creator/help/script/fetch-records.html,
Firewall issues with published links
Hi there I am having troubles getting around the firewall for one of our clients. They have whitelisted all the Zoho links used, even those opened by openURL commands, and they are still not working correctly. This includes published forms and databases. Is there a list of IP addresses or generic URLs I can give them to whitelist?
Function - custom action - fetch and use - I don't succeed in assign a date to new record
Hi Please hava a look at the attached document. I’m trying to create a function. When pushing the button (that triggers the function) in form Cluster, a record should be created in form Planning. Fetching the ID’s of the relationships seems to be working. Creating a planning record goes ½ well when I hardcode the content of the fields. Assigning a date fails. Thanks for helping me out.
Function for REST API
Hi Guys, I would appreciate if anyone can guide me a little bit on how do I create Function in Zoho Creator to be able to POST API to 3rd party. I know this cURL works, but I just not sure how to build function around it - any help and guidance would be much appreciated I am OK with someone helping me out for a fee as well Here is an example with cURL: curl https://api.signable.co.uk/v1/envelopes -u d41d8cd98f00b204e9800998ecf8427e:x -X POST -d "envelope_title=My envelope" -d "user_id=1234" -d 'envelope_documents=[{"document_title":
Viewing attached files
I have a few fields that are file attachment fields. It appears that the only way to see the files once uploaded is to download them. Is that correct, or is there a way to click on the file name and view the file in the browser? Thanks
Web based forms
I have created a Zoho Creator application wherein I would like to be able to direct applicants to my company to a website where they can fill in a form that results in the data populating my application. I assume this is possible, but would appreciate direction on how to do this. Thanks
Next button click is inserting new record on click
I have five forms.On each form I am accepting data and on next button click.For all four forms i have only one table.I am passing the DocumentID as query string and on next button click i am inserting that data in table and opening new form. While opening new form i am passing that DocumentID as query string .But when i click next my record in inserting as new record.Its not inserting in exsting row.I want that all data of four forms should insert into only one row. How can i do that?
Multi language support
I am using a trial version and have added data in multiple languages, as well as have fields in multiple languages. Will this feature still be available to me after the trial period is over?
triggering a beep/tone/sound as an event
When filling out a form, I'd like to provide the user an audible confirmation during certain events (for example, On Edit/On Load). The user is entering data away from the monitor and the tone will indicate a new record is loaded and ready for inputs. Is there a method to provide an audible indicator that's triggered in an event?
Using Form and Note field to display images but the images will not work in published links
Hello I have a custom action that opens a URL to a Zoho Form that my clients use to edit and approve reports. We use a note field to display images, but it has come to our attention that the images do not display. We have recreated the problem and it seems the pictures only display within Zoho and not in published links.
Lookup Refreshing
I have 3 lookups (for another app) in a form that Fetch Countries. The problem is that if I create in the first lookup a new Country record this will not appear in the second and third lookup selection. So I need to refresh the form. Which is the best way to update the other lookups without refreshing the form and loosing the already filled fields. Thank you,
Customer Portal Allow New Entries
Hello, I setup a customer portal for the app A, I have a form with a lookup that fetch information for the app B also I enable the option to Allow new entries. When I access thru customer portal the Allow new entries option doesn´t appear even though the user have all permissions. Its not possible to create records to another app thru the customer portal? Best Regards,
How to check the value of lookup is selected or not
I have one lookup in which i have names and after selecting names i am displaying the address of the selected name.but if the lookup value is not selected then i want to display the text-boxes to accept data from user.I have "-Select-" field at top if user selects that "-Select-" then i want to display the text-boxes to accept input from user. how can i do that.
Pros and Cons of sometimes using a separate app (vs. adding to existing app)?
Could we use this post to collect wisdom on the behavior / capabilities / strategy of adding more as a separate app vs. adding to the same app? I'll give a start from our limited understanding. I haven't seen this discussed in the Help or on the Forum -but please provide links if it is. (We have a "main" app with a suite of some 30 tables/forms and associated reports, etc. But for 2 others, we've made each separate apps, mostly for their own unique security -Enterprise license- and unique customer
Add records from zoho crm to zoho creator raise permission denied using rest api
Add records from zoho crm to zoho creator raise permission denied using rest api
Search across all fields in a form to return matching results
Hi all, I've got an application that contains a form (A) that has several linked parent forms (i.e. so form (A) has many drop-downs that change dynamically based upon results chosen). I have created a stateless form for a search function. I'm now trying to search each of the fields to see if it contains the value I am searching on. I I have create a HTML view ready to display the results (using field names and op_26 - i.e. Field1=<value1>&Field1_op=26&Field2=<value>&Field2_op=26&etc...). However,
Basic Student/Class Enrollment Example Needed
Hello, new to Creator and just can't figure out what I'm sure is the most basic of requirements: I have two forms: Student Class Student form has a lookup field to Class as multi-select with Bidirectional Relation checked Class form has lookup field to Student as multi-select with Bidirectional Relation checked I can easily enroll a Student in multiple classes the issue comes with reporting I need to run a report that shows the individual students enrolled in a class: Class Name (3) Student 1 Student
image on user input
There is no 'on user input' for an image field. Is there any way to detect that the user changed the image before they submit the form?
[SOLVED] How to change a value from one form which resides in another & create a function that changes the status.
Hi, This whole "Not having to code a single line" for Zoho is proving itself not quite true... So.. I have two forms. A and B A has B as a subform A has a status dropdown I wish to change this status dropdown on form A FROM form B(From standalone form, not as a subform) . How do I do it the best way? AND Can I change the value of a radio button depending on the value from a textbox? Thanks for all the help! /V
Best way to create a printable Invoice lay-out
Hi, I need to create a couple of lay-out's for quotes, orders and invoices which can be send in PDF by mail to customers or can be printed. What is the best way to do this at the moment? Kind regards, Johan Boerema
Copy filed value to other fields in the same form
Hi, I'm building my first application in Zoho creator. I was wondering what the best method is to copy a filled value to other fields in the same form. I've got a visit address field, which should be copied to post address and delivery address (when they're empty). But the field should stay writable, so the user can enter another address when needed. Kind regards, Johan Boerema
Zoho Creator -> Changing date regarding input
Hello, We are working as a travel agency with rental bikes. When the time of arrival is after 16:00 for example, I would like to book the bikes for the next day. Thus when we fill in time of arrival > 16:00, the startdate of the bikes should be the arrival date + 1 day. Is this possible? Looking forward to your reply. Thank you very much! Kind regards, Luc ten Haaf
Date format
Hi, Is there any function that I can convert the below date format Actual : 2015-08-14 00:00:00 Formatted: Friday ( only extract full day name) I want to convert the actual date to Full Day name only. Thanks Arfater
Next Page