What's the record.getCurrentSublistValue() equival...
# ask-stanley-ai
a
What's the record.getCurrentSublistValue() equivalent fieldId for the search filter field "taxline"?
c
AI generated answer (using internal Slack threads):
The equivalent
fieldId
for the search filter field "taxline" when using
record.getCurrentSublistValue()
is not explicitly mentioned in the provided conversations. However, typically the
fieldId
would be the same as the search filter field, so you would use "taxline" as the
fieldId
in
record.getCurrentSublistValue()
. Here is an example of how you might use it:
Copy code
javascript
var taxlineValue = record.getCurrentSublistValue({
    sublistId: "yourSublistId",
    fieldId: "taxline",
    line: yourLineIndex
});
Please replace "yourSublistId" and "yourLineIndex" with the actual sublist ID and line index you are working with. ****** 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.826562107
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.823579431
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.820893645
Please provide your feedback on this answer.