Search Results for 'script'
-
Search Results
-
Topic: ipad version issues
Hi Brendan,
Firstly thank you so much for such a useful piece of software. I am using the latest iPad version 5.3.18 and have come across some small issues :- When creating a new field, the description is never shown
- Cannot seem to delete a pick list
- There is an option to colour items in a pick list but this does not work
- Table field entries are not searchable
- fields setup with pick lists using list value not field, still allow you to enter text directly into the field and not pick an entry from the list. Surely a pick list should only allow an entry to be picked from the list of different values. By setting a pick list field to allow multi-select this actually prevents text entry in the field !
These are only minor issues. Otherwise I really enjoy using the software. Keep up the good work,
Thanks
NickI wish to create a script which searches one Number field. If there is nothing there then use another Number field. However, if the first number may have nothing in it (not even a zero), but I cannot work out the search criteria for an empty number field.
For example:
if (upper_figure == ”) {
return total_charge_with_fixed_amount;}
does to produce the desired result if the upper_figure is empty. Nor does
if (upper_figure == null) {
return total_charge_with_fixed_amount;}
What is the correct syntax for an empty Number field?
In a form I have a table field which contains a number of records.
I wish to export the contents of a number of the fields to a CSV (or XLSX) file. But the table field are not exportable.
Is possible to extract the contents of the table field into an another field through a script?
In the attached document the table field (called ‘Third party charges’) contains two records:
Legalisation agent (normal service) £24 1 £24.00
FCO – apostille (normal service) £30 1 £30.00I would like to combine so they become in another field such as (for example):
1. FCO – apostille (normal service): £30 x 1 = £30.00 – 2. Legalisation agent (normal service) = £24 x 1= £24.00
Can a script do this and how would I do it?