Hi, Please see the highlighted part of the snapsho...
# suitescript
t
Hi, Please see the highlighted part of the snapshot. I need to add a button to verify the GST number. IS it possible to add the button in highlighted part? Or is there any other option that we can use in place of button to verify the GST.
m
@Tanu you can true adding an inline html field and set the content to a button
t
@michoel Sorry I did'nt understand. How to do this.?
m
Copy code
form.addField({
      id: "custpage_inline_html",
      type: ui.FieldType.INLINEHTML,
      label: "HTML Field",
    }).defaultValue = '<button onclick="alert(\'you clicked me\')">Click Me</button>';
👍 2
t
Thank You So much... Got It