Sciuridae54696d
01/30/2021, 4:37 PM/*******************************************************************
* @NApiVersion 2.x
* @NScriptType ClientScript
* @NModuleScope SameAccount
*
* Author: Sciuridae54696d
* Date: 31-01-2021
* ******************************************************************* */
define(['N/record'], function(record) {
var module = {};
module.pageInit = function(scriptContext) {
var currRec = scriptContext.currentRecord;
console.log("running");
jQuery('#uir-record-status').hide();
};
return module;
});
Trying to do some DOM, to hide that standard NS blue box on approval on invoice, any tips?Sciuridae54696d
01/30/2021, 4:38 PMmichoel
01/31/2021, 12:16 AM#id
selector, it should be a .class
selector. jQuery('.uir-record-status').hide();