AdminTrackVia
(Admin, TrackVia)
My feedback
-
1 vote
-
2 votes
AdminTrackVia (Admin, TrackVia) commented
Hello Elizabeth,
Due to higher security standards in the new platform, there is no longer the ability to make a view public. In the new platform you can share the first 50 records in a view with anyone via email, but TrackVia credentials would be needed to see the view in it's entirety.
Regards,
Witte
TrackVia Support -
12 votes2 comments · I would like to see... » improve existing feature · Flag idea as inappropriate… · Admin →
AdminTrackVia (Admin, TrackVia) commented
Hello,
Thank you for your suggestion. I agree that this would be a very helpful enhancement and have logged your request.
In regards to your second question, while it is not possible to get additional votes on the forum, it is possible to get your votes back from any issue/enhancement you've voted on previously and to vote on your higher priorities.
Regards,
Witte
-
1 vote
AdminTrackVia (Admin, TrackVia) commented
Hello Tom,
Currently, the Lanes feature is available for all accounts at the Enterprise level and above. The option to convert a view into lanes will only appear on the menu for views that qualify to be converted, so they must contain a drop down field type. More information regarding lanes can be found in our knowledge base:
http://help.trackvia.com/knowledgebase/articles/503255-how-to-use-lanes
Please let us know if you have further questions.
Thank you,
Kim
-
2 votes
-
1 vote
AdminTrackVia (Admin, TrackVia) commented
Here is a link to the TrackVia YouTube Channel - http://www.youtube.com/trackvia
-
6 votes
AdminTrackVia (Admin, TrackVia) commented
Hi Aliyah,
With our last release we added the ability to perform cross-table functions, so pulling a list of email addresses is now possible. When there is a relationship among tables you can use the childconcatenate() function. This link gives more information regarding the new functions:
http://help.trackvia.com/knowledgebase/articles/356703-child-functions
For example, this might be useful if you have a table containing different Companies and another table containing all of the Contacts associated with each company. In this situation, you can use the childconcatenate() formula to show a list of your Contacts' email addresses in each Company record. You can then copy and paste the results into an email client to send a bulk email.
If you have further questions, please let us know. Hope this helps!
Thank you,
Kim
-
1 vote
-
1 vote
AdminTrackVia (Admin, TrackVia) commented
Great idea! I can see how this would save you a lot of time when creating forms. However, this would mean that there could be multiple inputs into the same field( this would most likely not be possible).
Another way of accomplishing this, which may be more feasible, would be to have a "copy field" option in the table setup so you can easily copy the check box field multiple times. It would then just be a matter of putting these fields on the form. Thank you for your input and we will gladly pass this along to our product team!
Derrick
-
1 vote
AdminTrackVia (Admin, TrackVia) commented
Hi!
You have the ability to delete your data in TrackVia Express by clicking on the database icon on the top right of your screen. Then choose All Apps from the menu. On the next screen you will see the apps you have created and each app will have a trash can icon so it can be deleted. This will remove all of your tables and records from the app, allowing you start from scratch.
Here is a link to the article with screenshots:
http://help.trackvia.com/knowledgebase/articles/315446-how-to-delete-an-appPlease let us know if you need further assistance.
Thank you,
Kim
-
25 votes
AdminTrackVia (Admin, TrackVia) commented
Would you like to see a tool that helps you identify and manage duplicate data?
-
8 votes
AdminTrackVia (Admin, TrackVia) commented
Great idea! I see how this would make it much easier for other admins to understand the purpose of the field. Thank you for your suggestion!
-
1 vote
AdminTrackVia (Admin, TrackVia) commented
Thank you for the feedback, Henry! The application navigation is an item on our list we are looking to improve upon. Keep an eye out for an easier way to navigate from the App Designer (edit app) page to the Table Designer (edit table).
-
3 votes
AdminTrackVia (Admin, TrackVia) shared this idea ·
-
1 vote
AdminTrackVia (Admin, TrackVia) commented
Hi Ben,
After creating your first table by importing a spreadsheet, you should be taken to the App Overview page. In the top section here, labeled "Tables", there is a green Import button you can click to proceed with additional imports.
Thanks for the question!
Regards,
DJ -
2 votes0 comments · I would like to see... » improve existing feature · Flag idea as inappropriate… · Admin →
AdminTrackVia (Admin, TrackVia) shared this idea ·
-
0 votes0 comments · I would like to see... » improve existing feature · Flag idea as inappropriate… · Admin →
AdminTrackVia (Admin, TrackVia) shared this idea ·
-
4 votes0 comments · I would like to see... » improve existing feature · Flag idea as inappropriate… · Admin →
AdminTrackVia (Admin, TrackVia) shared this idea ·
Hi Kevin -
Good question.
Unlike calculated fields, AppScripts don't run on page load. They must be triggered by an event in TrackVia.
The six types of events that can trigger AppScripts are:
-BEFORE INSERT
-AFTER INSERT
-BEFORE UPDATE
-AFTER UPDATE
-BEFORE DELETE
-AFTER DELETE
The Insert, Update, and Delete portions of these events correspond to an action in TrackVia. To choose the appropriate event, you'll need to determine whether you want your script to trigger on Record Creation, Record Edit, or Record Deletion, respectively.
The Before and After portions refer to the order of operations and when the AppScript triggers. Meaning, should the AppScript trigger before the data is saved/deleted in TrackVia or after? In most cases, you'll want to use Before. A notable exception is with creating a new record and using AppScripts to add children. In that case, you'd use AFTER INSERT because the children need the parent to exist before they can link to it.