-
Notifications
You must be signed in to change notification settings - Fork 93
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
setMatrixSublistValue does not accept column #243
Comments
Hmm that is odd. I tried something similar and it worked fine. Which version of the netsuite-types module do you have installed? And what type of script is that in? Thanks! |
This is in a user event, beforeSubmit |
it works without issue for me. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
NetSuite expects sublistId, fieldId, line, column and value from 'setMatrixSublistValue'. Though column is not assignable to parameter of type 'SetSublistValueOptions' - which is both correct and not.
Here's the error that I get:
Argument of type '{ sublistId: string; fieldId: string; line: number; column: number; value: number; }' is not assignable to parameter of type 'SetSublistValueOptions'. Object literal may only specify known properties, and 'column' does not exist in type 'SetSublistValueOptions'.ts(2345)
Right now to make it work I need to run // @ts-ignore
The text was updated successfully, but these errors were encountered: