Anybody having issues where a client script attach...
# suitescript
r
Anybody having issues where a client script attached to the suitelet is not executing. The custom client functions like `process`and
search
are executing but the NS ones: `fieldChanged`and
pageInit
are not. Below are the endpoints on the client:
Copy code
return {
    process: process,
    fieldChanged: fieldChanged,
    pageInit: pageInit,
    search: search,
  };
r
You are running that suitelet on the client side or server side ?
w
@NApiVersion 2.x @NScripType ClientScript Is this ^ on the top of your client script?
r
@wbermudo That worked, thanks!
👍🏽 1