Jump to content

Jan

Caspio Evangelist
  • Posts

    635
  • Joined

  • Last visited

  • Days Won

    35

Everything posted by Jan

  1. Jan

    Caspio Pdf

    Hello Henry, There are articles in How To: Importing Data that contains Prepare Your Data, Uploading Data, Importing Data and Configure Your Fields chapters. Creating a Report DataPage that contains Detailed instructions to create a Report DataPage. It is not a PDF, but I hope it can help.
  2. Hello Elena, I have seen that there is the PDF Reports extension. Maybe it can help you.
  3. Hi Frode, As far as I know, this format is defined in your Localization (the article about formatting). Then you can use fields that are not displayed on the Result page.
  4. Hi Elena, You have written: In addition to this, I also have the fields pass parameters to a virtual box, so that users can see actually what they have chosen. But this does not become immediately visible until after they press the "Submit" button at the very end of the form, and then going back to the page by pressing the back button on of their web page. I would recommend you to use "on load" parameters too and set Destination as "Same form". So, when a user opens the form firstly, she/he will not see any parameters. When he/she will click "Submit" the data will be saved and displayed again. Maybe it is better to select as destination "Go to a new page" and enter a new Update Form, that will display choices of a user and allow to edit them.
  5. Jan

    Legend Position

    Hi Elena, As far as I know - you can only select DataTip as Value label. Then values will be displayed by mouse over and under the cursor.
  6. Hi Frode, Is it a Result page of a Report DataPage? On Configure Results Page Fields step, select your date. In the Field options, there is the Formatting field. I think, you can click the "Edit" button and select the same format for both dates. On my DataPages i selected "Localization" for both fields and they work.
  7. Hello Tim, It seems, the article Concatenate/Combine two fields into one field can help you with first question. If I understand correctly your second question, I think Conditional forms may be useful to you. You can compare values of two fields and make a field required or hide/show a field.
  8. Hello tprude! If I understand correctly, you use "Fixed Axis value range". As far as I know, if you select "Automatic", chart labels will be displayed always. Also you can select DataTip in the Value label field.
  9. Hello Mark, If I understand correctly, a Report with Pre-defined Criteria can help.
  10. Hello leadma, As far as I know, you can change settings of your Localization. It is Formatting Standards Category, the Number item. You can select the Enable Custom Number Formatting and select (space) in the Digit grouping drop down. But it will be applied for all fields of the DataPage.
  11. Jan

    Form Columns

    Hi Stabosco, Welcome on board! I think, the Multi-column and Sections article might be helpful. As far as I know, for radio buttons you can select the Multiple options per line item in the Placement drop box of the Field Options section.
  12. Hi svearvaldyr, It seems this is described in the Parameters as Query String Values article.
  13. Hello Rey, your data source should contain a unique field. When a user wants to update an item, he should be able to find it by a unique parameter, usually it is ID.
  14. Hello Rey, During Import, you can set the Autonumber Data Type for the corresponding field. Then new items will be added with correct next ID.
  15. Hello ab2013, If I understand correctly, it is better to use the Checked property. Example, function is_checked_and_change() { var is_checked = document.getElementById("id").checked; if (is_checked) { document.getElementById("id").checked=false; } else { document.getElementById("id").checked=true; } } The function checks if the checkbox is checked. If the checkbox is checked, the function unchecks it and vice versa.
  16. Hello sirobi, You can use a formula like: [@field:firstname]+' '+[@field:surname] Then "David Jones" will be displayed.
  17. You can use the formula like: (IsNull([@field:one],0)+IsNull([@field:two],0))/(IsNumeric([@field:one])+IsNumeric([@field:two])) IsNull(field,0) returns 0 if a field is blank and this allows to calculate blank fields. IsNumeric returns 1 if the field is not blank and 0 if the field is blank. But if all fields are blank, probably, the Error in formula error will be displayed.
  18. Hello JC2, You can use Acknowledgement Emails. In the your DataPage, in a Radio Buttons Form element, enter for the first item Display: HAMMOND Value: the email address of the HAMMOND location for the second Display: DENHAM SPRINGS Value: the email address of the DENHAM SPRINGS location On the Destination and Triggers page, select the Acknowledgement email to email address submitted in form check-box and select the correspond field in the Email field drop-down. On the next page, configure the acknowledgement email.
  19. Hi Bill, Do you use the type text64000 for this field? The type text64000 "remembers" and displays paragraphs.
  20. I think, you can use a Java-script code, like this for example: Perform a calculation on values entered in a WebForm DataPage
  21. Hello Compu, the line var status = document.getElementsById("EditRecordStatus")[0].value; contains "-s" - should be getElementById not ElementS. And the line returns the value of the first item in the dropdown, not the value of the selected item. You can use the following code instead of this line: var tempvar = document.getElementById("EditRecordStatus"); var status = tempvar.options[tempvar.selectedIndex].value; I hope it helps.
  22. Hello jnordstrand, If I understand correctly, the type of fields is text. You can change the type of both fields to a Number and the result will be "800".
  23. Hello kme, Maybe, the Data Grouping can help.
  24. Hello, I am not sure, that understand your purpose correctly. You have not display fields, that are used in a Calculated field. You can remove them from the page, but you can still use them in your Calculated field.
  25. Hello Sirobi, Do you use Embed deployment? In this case, the code of your DataPage is like: <div id="SOMECODE"><a href="http://www.caspio.com" target="_blank">Online Database</a> by Caspio</div> <script type="text/javascript" src="SOME_URL"></script> <script type="text/javascript">try{f_cbload("SOMECODE","http:");}catch(v_e){;}</script> <div id="cxkg"><a href="SOME_URL">Click here</a> to load this Caspio <a href="http://www.caspio.com" title="Online Database">Online Database</a>.</div> You can delete the marked code. But please do not remove the second link.
×
×
  • Create New...