How do I name a tab in my custom record from the X...
# ask-stanley-ai
e
How do I name a tab in my custom record from the XML definition?
c
AI generated answer (using internal Slack threads):
To name a tab in your custom record from the XML definition, you need to use the
<tabtitle>
tag within the
<subtab>
tag. Here is an example:
Copy code
xml
<subtabs>
   <subtab scriptid="tab_224_t841073_temp">
    <tabparent></tabparent>
    <tabtitle>Deposits</tabtitle>
   </subtab>
</subtabs>
In this example, a new subtab with the scriptid "tab_224_t841073_temp" is created and the title of the tab is set to "Deposits" using the
<tabtitle>
tag. If you want to make a custom field a parent of this subtab, you can use the
<isparent>
and
<parentsubtab>
tags in the custom field's XML definition. Here is an example:
Copy code
xml
<isparent>T</isparent>
<parentsubtab>[scriptid=<myscriptID>.tab_224_t841073_temp]</parentsubtab>
In this example, the custom field is marked as a parent using the
<isparent>
tag and the parent subtab is set to the previously created subtab using the
<parentsubtab>
tag. ****** Disclaimer: This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes. ******
Slack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.82657361
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.823773146
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.823117733
Please provide your feedback on this answer.