why is the parameter "pageSize" available in Report but not available in rest api view record ?
why is the parameter of pageSize available in report but not available in rest api view record ? Here is example: 1. the parameter "pageSize=4"below is not available. the json return contain all records. https://creator.zoho.com.cn/api/json/productv3/view/ProductLook?authtoken=****&zc_ownername=<appownername>&scope=creatorapi&raw=true&pageSize=4 2. the parameter "pageSize=4" below is available. the view will only show 4 records. https://creator.zoho.com.cn/<appownername>/productv3/#View:ProductLook?pageSize=4
Error popup on new interfance......
Hi Zoho, The interface' new look is great, but the error popup is a little problematic: please fix this :) Thanks! Ravid
Zoho Creator pages Not working in mobile
Hi I would like to know whether we need to have seperate coding for pages to work in Mobile and Desktop at the same time. Because the pages which worked in Desktop is not working in my mobile. Please Clarify
500 Error Page After PayPal Payment redirect
Hello, I am having issues with my form after a payment is made. I opened a ticket with Zoho Support more than 10 days ago about this issue, but I still have not received a solution or fix for this. I am hoping someone else might have some insight on what is going on. Please help because I keep getting an error page when payment is made using any Zoho form and my clients need their application to go LIVE in a few days. Here is a description of the problem: When I test the form from the application
Lookup field in mass import
When I import data into a form, for a lookup field, why can't I use the ID of the related form's rows? It does not seem to work with the ID; I have to use a value from another field in the related form. Isn't the database design relational?
How to select the fields available for BulkEdit?
I'm made a Custom action with the purpose to replace the BulkEdit for this column. Now I want to hide this column from the list of BulkEdit fields. How can I do IT? TIA
Picklist created by "add item to..." is empty on edit mode!
Hi Zoho, In my form I have a subform, with a picklist populated from a field in the main form. I have tow problems on edit mode: 1. every item chosen from a picklist when submitting the original form is shown under it, like an "other" choice (which I did not marked as feasible in the main form) 2. the picklists on row 2 and onwards are empty. (All the picklists were empty, I've managed to solve row1 picklist by re-populating the picklist at Subform.PicklistField on the "On Edit -> On Load", but this
How to open another form without validating fields in the current form
I want to include a button on FormA that switches to FormB. I use an OpenUrL() function in the button script on FormA, but the function first validates the fields on FormA. How do I switch to FormB without validating FormA?
CRM Search Record by Field other than ID
I need to retrieve records from CRM based on a variable other than ACCOUNTID. How do I do this?
Error: Zoho Creator does not convert openUrL() "form-perma" to "form-mobile" for mobile browser
When a form is opened on a mobile device using the openUrL() statement, Zoho Creator must convert "form-perma" to "form-mobile" so the form is displayed properly in the mobile browser. Zoho Creator does NOT do this. The form is opened as a regular form not mobile, so the form is too small and must be resized by the user. Example: openUrl("https://creator.zoho.com" + zoho.appuri + "/ form-perma /MyForm" should become openUrl("https://creator.zoho.com" + zoho.appuri + "/ form-mobile /MyForm" when opened
HTML view - opening and closing forms
I have an HTML view page with an "Add Appointment" link which opens a form in a modal dialog, however I can't get the the form to close and then also have the HTML view page refreshed with the necessary querystring parameter intact. I have tried this: <a href="#Form:Appointments?zc_LoadIn=dialog&Client=<%=CID%>&zc_NextUrl=#View:Client_Details_View?CID=<%=CID%>">Add Appointment</a> After adding a record, the form closes and the HTML view refreshes but the "?CID=..." parameter is stripped from the
How can I collect user input before updating a record?
Hello experts -- I have an application that has a form which is doing 90% of what I need. Basically, it's form/report that shows orders taken (think shopping cart). When the order is ready to ship, I have my user edit the record, update a comments field, and mark the order closed by changing a status. Then they Submit and they're done. I created a button on the report for closing the order by just changing the status, so that's working fine. But I can't have the button prompt for user input. What
Best way to send email to a few hundred addresses
What is the best way to send email to a few hundred addresses? My concern is if I use a for each loop I will hit the 5000 statement limit or reach the daily max number of emails. The email subject & content is the same for all recipients.
Lookup Question
I am creating a very basic set of forms and reports to track a pet food pantry program. Our animal rescue supplies free dog and cat food to those in our community who are unable to afford. I have a form that tracks their information and then a form that we enter when they pickup which has a lookup so we can tie it to the person (customer). Two seperate questions: 1) Is there a way on the pickup form that we can have it automatically indicate in a field the last time they picked up food? 2) On
Records per page report property does not work
All list reports in my application always show all records even when a 'Records per page' display limit is set in the Summary section of the Report Settings. This is a major problem because it causes reports to load slowly and greatly impacts the usability of the application. I have verified that the the report definition includes the option to limit the display rows and have tried various values, non of which work: options ( display rows = 20 ... This error also occurs when the report
Customize Layout Fails After Restore
I created an app in another account, exported to the DS file, and imported into a new file. That worked ok. However the restored app cannot the Layout or Theme. After the import it defaulted to one layout and it seems it is stuck. Any ideas?
If statement Function
I am trying to use a function to contain a large if/elseif statement and then simply call the function in the on user input of multiple fields in my form which would allow me to simply edit the function instead of editing every field when I need to make a change. My assumption is that this is possible but I'm quite stuck. I've written a simple test function using a form object and it seems like it should work but I haven't been able to figure out how to call it. Here's the function as I've written
How to programatically add one-to-many relationship??
I have a one to many relationship between Student and Course forms. Each student can have multiple Course. The intention of the following code is to test how to add multiple courses to one student. But unfortunately did not work. Can anybody tell me how to do it properly? Student.On Add.On Success: c1 = Course [Name == "Course 1"]; c2 = Course [Name == "Course 2"]; input.Course.add(c1.ID); input.Course.add(c2.ID);
Maximum number of fields in a form
What is the Maximum number of fields in a form? Thanks.
iPad: embedded report not scrolling
NOTE: This is not a Creator problem. It is a problem of rendering on the iPad and the scrolling works fine on a laptop, however I am hoping that someone can help me. Here is the problem: An embed script can be generated from a Zoho Creator report and used to embed the report into a page in a Google site. The embed snippet looks like this: <iframe height='500px' width='100%' name='reportEmbed-CLIENTRR1' frameborder='0' scrolling='auto' allowTransparency ='true' src='https://creator.zoho.com( actual
How to change display type for a relation?
Is it possible to change the display type of a bi-directional relation after it's created? How? I have a one to many relation, but i want to change it to one to many. Clicking on the display type won't do anything. See screenshot.
Importing data from excel to mandatory fields
Hi If I have a field set to mandatory, once I marry up the corresponding field in Excel to the field in Zoho creator, it fails. Is there a way around this aside from the obvious? Thanks
Form picks wrong email address
Good day, I have created a form where external parties can enter data and in the bottom fill below two fields: Send by: Pick email from drop-down Cc Receipients: Pick email from multiple select Then when submitting the form, same will be sent to predefined receipients, the sender (send by) in Cc, and then the defined Cc receipients. The first, Send by works fine and when replying to the emails, the email will reply to the actual email address stated. Howver, the Cc fields work in a strange way, as
Zoho Creator postUrl "Content Type (415)" Error
I have a simple postUrl script in a Zoho Creator App to receive an authentication key from an internal application. See below: myHeader=map(); myMap=map(); myHeader.put("Content_Type","application/json"); myHeader.put("Accept", "application/json"); myMap.put("userName","xxxxx@xxxxxx.com"); myMap.put("apiKey","xxxxxxxxxxxxxxxxxxxxxxxxxxx"); resp = postUrl("http://test.myeddy.info/habi-ws-ergon/api/v1/token", myMap, myHeader,false); info resp; However, It gives back a 415 HTTP error which I believe
Error Reference field not having the value when adding a record
Adding records fails when it involves a lookup field. Here's an example: I have two forms: Participants and Surveys. Participants has an autonumber field called Participant ID with a Deluge field name of participantId. Surveys includes Participant ID as a lookup field with a Deluge field name of surParticipantId. When the user updates a Participant record and submits the Participants form, the following is executed to add a survey with the Survey's Participant ID populated with the submitted Participant
Having trouble on edit.
Hello, I am working in a purchase order form with the following structure. Purchase order: date - date company - text provider - text email - email subform total order cost - currency Subform (in purchase order): reference - lookup to product catalog description - text cost - currency IVA - number cost plus IVA - currency quantity - number final cost - currency The form works perfect, but on edit mode I am having some trouble. The problem is that when I want to edit the Cost field or the quantity
Is it possible to Bulk Update Records so that Formula Values based on time Update?
In my app, as each month turns over, fees accrue. A formula field shows this accrual less payments already made. The value of this formula is the account balance until a new month begins. How can I bulk update records so that the balance reflects the beginning of a new month? Can such a bulk update be automatically scheduled to happen on the 1st of each month? I've been studying Functions here at Zoho Creator, but don't have a solid understanding yet. I am hoping there is a basic function code
Problem with formula
Hi, i'm having trouble using Formula for my business as investment mangager. I already created a module for "Investments" in wich i can establish the value of my clients portfolio. I just want a formula with some kind of button in wich i can add new money or interest payment to the field Cash inside my investment module. I would apreciate andy kind of help. Thank you Samuel
Record Summary Public
Is there anyway to make a record summary viewable to the public. I have a report on my website showing available inventory with a custom action to show more info by opening the record summary in a pop up. However, it just redirects my visitors to login to zoho and says they do not have permission to view it.
showing the rent amount as weekly or monthly option
I am trying to create a tenant reference form and in the form i need user to enter the rent amount as a weekly or monthly option. After user input the amount in rent amount field, i would like to achieve that user can specify the rent amount as weekly or monthly How do i achieve thanks in advance
Lookup
Can a Look Up field view more than one field? For example, if a Look Up field is to select a Device Code field from the Devices table . But the Code field is meaningless. I would like to view multiple fields from the Device list, say a friendly "Name" field and perhaps a "Room" field when we select a device, we want to store only the Code field in the Look Up field. Hopefully that makes sense?
Functions does not work at Linked View from another Application PLEASE HELP!
Dear All Please help me About this issue. This is first view from Orginal APP lets say App name APP A Here all Functions work as you see "Sevkiyat Planla" "Boyahane Planla" ------------------------------------------------------------------------- This is lets Say APP B and here you can see Talepleri is Linked to APP A (lookup). After Click This as expected view from APP A opens. ----------------------------------------------------------------------- We are still in APP B here and we have view from
Rich text editor for mobile phones
Hi Zoho, Just wondering whether rich text data input/editing capability for mobile phones is on the road map any time soon? Thanks,
Show user filter criteria of pivot chart on pdf export
How can the 'User filter criteria' of a pivot chart be shown on a pdf export? Ideally, I'd like the criteria to be the subtitle of the report. I have many assessments that users can create themselves. They see a chart of the results by choosing the assessment name from the User filter criteria on a pivot chart. Thanks!
How do I save column order and visible columns for the drill down of a pivot chart?
After clicking on a data point in a pivot chart, I can see the underlying data. By clicking on a button on the upper right of the grid, I can hide a reorder columns. How do I save this layout so users don't get confused with extra columns? When designing the pivot chart, if I click on a data point, the x and y access labels are helpfully summarized at top. How do I get the same thing in live mode? This way, those columns don't need to be shown since the values are the same for every record related
API HELP
I am trying to intragrate a creator form with Hello Sign so i can capture the signature. I have a sample POST request that they proviuded. I just dont know how to apply it to zoho... Can someone help me out please this is kiling me Example request / response POST https://[username]:[password]@api.hellosign.com/v3/signature_request/send_with_reusable_form reusable_form_id=c26b8a16784a872da37ea946b9ddec7c1e11dff6 subject=Purchase Order message=Glad we could come to an agreement. signers[Client][name]=George
Auto populate field from other form
How do I populate mileage_log_mileage in mileage_log using a value from sites_distance_from_office from sites table IF value off mileage_log_purpose_of_journey (drop down box) in mileage_log table equals "Office <> Site"
Time Zones
Is there a way of adding a Summer Time option to the Timezone settings?
Zoho Creator view: define security around view
I'd like to restrict edit-rights for a certain view. A view/report could have 20 fields, but I want the user to edit only 5 fields. I know this can be configured at the Form level, but I need to control each report/view individually. Can you guys add this feature? Thanks!
Data Entry from Different Sources. Conceptual Layout.
Hi, I've been playing with Zoho Creator for several days now, trying to figure out if its the right tool to help me set up an online database. I can't seem to get a handle on how I should lay the data out in the application, so I was hoping someone might help me with the correct data structure concept. The problem is that the data was previously stored in three or four separate spreadsheets, which need to be linked together. If this was a traditional database, we'd add foreign keys to the subsidiary
Next Page