Publishing a dashboard

One can share their personalized dashboard with other users in their center by publishing it. A published dashboard can consist of one tabbed page or of multiple pages. When a user publish a dashboard, user define the roles for users who will see the published dashboard, and what changes users will be able to make… Continue reading Publishing a dashboard

Chart of Account Numbering

Many businesses use standard account numbers and the names of those accounts on their general ledger. You can set up account numbers that appear in your chart of accounts, transactions, and most financial reports. When you start to work with NetSuite, account numbers are not enabled. An administrator must enable the preference on the Accounting… Continue reading Chart of Account Numbering

MULTI – CURRENCIES

NetSuite Multi-currency allows for the assignment of more than one currency to a customer or vendor enabling you to do business with customers/vendors who use multiple currencies in their business. This feature enables you to enter transactions in multiple currencies for an individual customer or vendor. Set up > Company > Enable features > Under Company subtab… Continue reading MULTI – CURRENCIES

How to Install & Use Moment.js in React

In this guide, I’m going to show how to setup and use moment.js in React. Let’s get started: Table of Contents Installation Examples Installation We can use only moment package but I I’ll suggest you to use react-moment too. It comes with handy JSX tags which reduce a lot of work. Optional: You can also install moment-timezone package. It is required to use the timezone… Continue reading How to Install & Use Moment.js in React

How to Select all Text of Textarea in React

We can select all content of an input field or textarea in many ways. I’m going to share three ways here. I’ll use e.target.select() method. Let’s start: The onClick handler allows us to call a function and perform an action when an element is clicked. The onfocus event occurs when an element gets focus. Have a look… Continue reading How to Select all Text of Textarea in React