is it possible to add a button to a sublist to sho...
# suitescript
e
is it possible to add a button to a sublist to show up view mode as well?
b
not without dom manupulation
e
ok fine, so hows that?
b
its the thing that netsuite specifically says not to use to interact with netsuite's ui
in this case its the usage of things like Document.createElement to create your button, Document.getElementById to find where you want to insert your button, and Element.append to add it to your found element
its the kind of thing that can break whenever netsuite makes changes