function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
MuMu 

Task and Event fields URL mapping

Hello all,
 
How do I know task and event fields mapping in URL. I need to create a custom button to open new task or event page and fill some fields for me automatically.
 
for example:
 
 
tsk5 is the subject field. How can I know location field and type drop down list?
 
Thanks.
Greg HGreg H
The values you are trying to determine are listed below.
 
For Events:
- evt5 = Subject
- evt12 = Location
- evt10 = Type
 
For Tasks:
- tsk5 = Subject
- tsk10 = Type
 
To find these out you simply view the source code of the task and event edit pages.  In the source code you will find an "id" value for each of your fields.  As an FYI, there is a developer add-on for Firefox that can make this process a little easier.
-greg
MuMu
Thanks Greg.