ERP Lover
09/04/2024, 9:12 AMCeligo AI
09/04/2024, 9:12 AMAI 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:
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:
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.
******Celigo AI
09/04/2024, 9:13 AMSlack 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
Celigo AI
09/04/2024, 9:13 AM