Search Results for 'script'
-
Search Results
-
Topic: Picklist with script missing
The picklist using a script (“Red Blue Green”) works, but using it on my iPhone 16 I discovered I can’t use it because the little picklist icon to touch to get the list is not there. No way to get the list.
Just for fun I put another field with a normal picklist and that works as expected with the icon at the right and it pops up the choices.
I guess it is because the filed is a Script type and that type doesn’t have a picklist option???
So, I guess that method doesn’t work on the iPhone?Topic: Pick lists w/ comment
I need a field that is a number that can be used in a graph against time.
To fill that field I would like it to be a quick pick list. That is easy.The number represents certain conditions which I don’t always remember.
The only way to do this is with a text box describing each number that shows up in the pick list.Is there a more elagent way to do this within the pick list instead of having those descriptions on the face of the form?
I’m not sure it’s the latest 1.1 update or the fact that I just restored from a backup. But this script used to create new record in another form and link it and display it immediately in the record. Now I have to go out of the record into the other form and then back for it to show up. Is it my script or has something changed in Tap Forms Pro?
function CopyToEbaySales() { // --- 1. CONFIGURATION --- // A. Source Fields (From COINS Form) - HARDCODED IDs var coin_type_id = 'fld-1231556e0f234de9b2d85f50225b8135'; var year_id = 'fld-4b84b047badd4d4cbb4a67ef6839522f'; var mint_id = 'fld-adb0be16f1a347dbbecc4ef562d779a7'; var photo_id = 'fld-d32730d871864ab2904cb60c587b105a'; var purchase_price_id ='fld-6deb90149d2b494fa3a3e89236398857'; // B. Destination Fields (From EBAY SALES Form) - HARDCODED IDs var ebay_coin_type_id = 'fld-9fdddd3a7a47410394042488e730f6c0'; var ebay_year_id = 'fld-6bee0d6f1e2b413192715c2c807d526f'; var ebay_mint_id = 'fld-cc42485d28c14c99bbd4970619bee9cf'; var ebay_photo_id = 'fld-e4a157a02f4841dc845b3ce800565c8e'; var ebay_cost_id = 'fld-dfa5d5683deb466e9a8088d2d4db56a5'; // C. Link Field (From COINS Form) - DYNAMIC LOOKUP // We get this ID automatically using the name. var link_field_name = "Ebay Sale"; var link_field_id = form.getFieldNamed(link_field_name).getId(); // --- 2. EXECUTION --- var ebayFormName = "eBay Sales"; var ebayForm = document.getFormNamed(ebayFormName); if (ebayForm) { // Create the new record in eBay Sales var newEbayRecord = ebayForm.addNewRecord(); // Copy the data newEbayRecord.setFieldValue(ebay_coin_type_id, record.getFieldValue(coin_type_id)); newEbayRecord.setFieldValue(ebay_year_id, record.getFieldValue(year_id)); newEbayRecord.setFieldValue(ebay_mint_id, record.getFieldValue(mint_id)); newEbayRecord.setFieldValue(ebay_cost_id, record.getFieldValue(purchase_price_id)); var photos = record.getFieldValue(photo_id); if (photos) { newEbayRecord.setFieldValue(ebay_photo_id, photos); } // Link the new record back to the current Coin record if (link_field_id) { record.addRecordToField(newEbayRecord, link_field_id); } else { console.log("Error: Could not find a link field named '" + link_field_name + "'"); } // Save document.saveAllChanges(); console.log("Success: Record moved and linked."); } else { console.log("Error: Could not find form named " + ebayFormName); } } CopyToEbaySales();Topic: Missing something
You gave me the script to add data from the previous record to the current record and I have it installed in my form, and I changed the reference to the previous record I think, but it isn’t working.
Can somebody solve this for me looking at my tfarc file?
I want todays data added to the running total of the previous record so the total gets bigger every record added.
Topic: Problems with Ver. 1.0.15
I’m using Cloud+, but synchronization is sometimes incomplete.
Records are created, but data is sometimes not copied.
Clicking a field triggers synchronization.
Changes made via script are sometimes not synchronized.
After synchronization, the form icon sometimes reverts to the default.
Linked records may not appear in the link field.
The link itself is working.
Sometimes the record does not switch to the newly created record. (Since ver 1.0.15 or earlier)
Even after modifying the data, the list view does not visually sort. (Since ver 1.0.15 or earlier)I’m not sure if this is the right place to be asking a subscription question but my guess is there will be a number of you have had the same question.
I have just upgraded from 5 to Pro. With 5 I was able to have Taps 5 installed on both my wife’s machine and my own using my registration number.
Now, however, my license has come through the App Store and is thus tied to my Apple ID and my wife’s machine is tied to her Apple ID.
Does this mean that now I will need to subscribe to two separate licenses tied to, our separate IDs?
Please understand this is absolutely not a moan. If I need to I’m more than happy to take another license ……………… but if I don’t I’ll be happier still!
DavidMac