Reputation: 1
I need to show a custom transaction column field in Netsuite. Netsuite Support Team is useless as well as Netsuite Support website. Can anybody help me with this? I need the field display type to be set to NORMAL when certain options from a dropdown menu are chosen, otherwise, it needs to be hidden.
Upvotes: 0
Views: 1421
Reputation: 15402
You cannot do this wholly client side. Once a list is displayed on a page the columns are fixed.
Your options include:
That last isn't has horrible as it may sound since you can couple that with a hidden sublist of the real items and edit via pop-up suitelet driven dialogs. i.e. the inline table is read-only except for an Edit button. The Edit button triggers a dialog that is sourced from a Suitelet. You do that in an iframe and the post returns a function that populates the selected values. You can also dynamically update the table and skip the post or only add an action button to the suitelet dialog that updates the parent values.
Upvotes: 1